
    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_f29054f17c006fc6e662fdac.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_87762624eb6acc6891032ccc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;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_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_dc2e9499b495043f894067e5.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_782553856f9d5885647b7a5c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_98d63f4b057156d2a10dc14d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_af3d978d0645e76fe98ed645.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921387;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_c8d2cf293b19464b8fb8a4c7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284668;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_46a8a4406df234d55d677bd2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.067383;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_26da39bbe19a7cdbdaa3a557.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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v1{vertical-align:27.360000px;}
.v4{vertical-align:48.240000px;}
.v3{vertical-align:54.720000px;}
.lsa{letter-spacing:-1.224000px;}
.lsc{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.144000px;}
.ls19{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.262080px;}
.ls1a{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.792000px;}
.ls1c{letter-spacing:0.900000px;}
.lsd{letter-spacing:2.681280px;}
.ls12{letter-spacing:7.560000px;}
.ls10{letter-spacing:15.480000px;}
.ls7{letter-spacing:15.552000px;}
.lse{letter-spacing:16.248000px;}
.ls5{letter-spacing:16.272000px;}
.ls11{letter-spacing:16.452000px;}
.ls13{letter-spacing:33.960000px;}
.lsf{letter-spacing:38.280000px;}
.ls15{letter-spacing:126.000000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-66.496200px;}
.ws6{word-spacing:-21.060000px;}
.ws11{word-spacing:-18.288000px;}
.ws4{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws10{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws2{word-spacing:-16.560000px;}
.wse{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.768000px;}
.wsc{word-spacing:-15.696000px;}
.ws9{word-spacing:-15.552000px;}
.wsa{word-spacing:-15.264000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.616000px;}
.ws3{word-spacing:-12.060000px;}
.wsf{word-spacing:-3.960000px;}
.wsd{word-spacing:-3.240000px;}
.ws5{word-spacing:0.000000px;}
._7{margin-left:-7.980720px;}
._5{margin-left:-6.094080px;}
._6{margin-left:-4.906560px;}
._0{margin-left:-3.709440px;}
._b{margin-left:-2.291040px;}
._1{margin-left:-1.158720px;}
._4{width:1.135440px;}
._16{width:2.992320px;}
._9{width:4.031280px;}
._a{width:5.043600px;}
._23{width:6.119520px;}
._f{width:7.157280px;}
._e{width:8.285280px;}
._18{width:9.402720px;}
._13{width:10.471680px;}
._12{width:11.747760px;}
._1a{width:12.924720px;}
._11{width:13.992960px;}
._10{width:15.036480px;}
._25{width:16.158240px;}
._8{width:17.951040px;}
._2b{width:19.944000px;}
._d{width:21.395520px;}
._c{width:22.786560px;}
._14{width:24.150240px;}
._15{width:25.444800px;}
._17{width:26.749440px;}
._26{width:28.005120px;}
._22{width:29.808000px;}
._28{width:31.104000px;}
._20{width:32.400000px;}
._21{width:33.840000px;}
._2d{width:35.112000px;}
._33{width:36.192000px;}
._2f{width:37.230720px;}
._4a{width:38.241840px;}
._2e{width:39.312000px;}
._4d{width:40.392000px;}
._70{width:41.400000px;}
._2a{width:42.408000px;}
._2c{width:43.704000px;}
._29{width:45.504000px;}
._39{width:47.088000px;}
._3a{width:48.853440px;}
._30{width:50.832000px;}
._38{width:52.344000px;}
._1d{width:53.352000px;}
._1c{width:54.504000px;}
._37{width:56.016000px;}
._27{width:57.528000px;}
._1e{width:58.536000px;}
._1f{width:59.544000px;}
._24{width:60.552000px;}
._3b{width:61.560000px;}
._54{width:62.656560px;}
._1b{width:64.152000px;}
._3c{width:65.304000px;}
._3d{width:66.996000px;}
._32{width:68.904000px;}
._73{width:69.941040px;}
._19{width:71.002560px;}
._56{width:72.648000px;}
._64{width:73.662720px;}
._60{width:74.736000px;}
._3e{width:75.792000px;}
._3f{width:76.852560px;}
._4c{width:78.247440px;}
._35{width:79.344000px;}
._53{width:81.072000px;}
._63{width:82.872000px;}
._52{width:84.534720px;}
._58{width:86.760000px;}
._5d{width:87.984000px;}
._5e{width:89.280000px;}
._71{width:91.224000px;}
._40{width:93.888000px;}
._57{width:97.272000px;}
._4b{width:98.568000px;}
._50{width:99.936000px;}
._5f{width:102.168000px;}
._36{width:103.248000px;}
._55{width:105.336000px;}
._5a{width:107.296560px;}
._69{width:108.504000px;}
._41{width:111.240000px;}
._74{width:113.184000px;}
._5c{width:115.776000px;}
._5b{width:116.784000px;}
._7f{width:118.728000px;}
._61{width:120.312000px;}
._79{width:121.824720px;}
._48{width:123.119280px;}
._65{width:125.784000px;}
._31{width:127.446720px;}
._83{width:128.513280px;}
._80{width:133.272000px;}
._7c{width:141.048000px;}
._62{width:143.112000px;}
._6c{width:144.312000px;}
._67{width:147.312000px;}
._68{width:148.752000px;}
._59{width:151.128000px;}
._7d{width:152.807280px;}
._44{width:157.816800px;}
._6f{width:172.260000px;}
._84{width:173.808000px;}
._6d{width:177.192000px;}
._6e{width:178.488000px;}
._77{width:180.504000px;}
._4e{width:190.584000px;}
._4f{width:191.942640px;}
._78{width:195.120000px;}
._7e{width:196.920000px;}
._51{width:204.480000px;}
._66{width:214.848000px;}
._49{width:226.566720px;}
._6b{width:257.040000px;}
._43{width:292.002000px;}
._7a{width:296.208000px;}
._7b{width:297.432000px;}
._42{width:352.648800px;}
._82{width:461.160000px;}
._46{width:464.628000px;}
._81{width:529.848000px;}
._72{width:561.888000px;}
._45{width:625.338720px;}
._75{width:645.912000px;}
._47{width:665.999040px;}
._76{width:677.808000px;}
._34{width:723.862080px;}
._3{width:923.340000px;}
._2{width:955.620000px;}
._6a{width:1001.103600px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y99{bottom:3.420000px;}
.y85{bottom:7.020000px;}
.y9f{bottom:7.050000px;}
.y8b{bottom:7.200000px;}
.yab{bottom:7.245000px;}
.yd9{bottom:14.220000px;}
.ydb{bottom:14.400000px;}
.yfb{bottom:14.445000px;}
.y98{bottom:15.480000px;}
.y84{bottom:19.080000px;}
.y9e{bottom:19.110000px;}
.y8d{bottom:19.260000px;}
.yaa{bottom:19.305000px;}
.y97{bottom:27.540000px;}
.ya4{bottom:30.960000px;}
.yae{bottom:31.320000px;}
.y8a{bottom:31.530000px;}
.y93{bottom:31.545000px;}
.y89{bottom:43.590000px;}
.y92{bottom:43.605000px;}
.yf6{bottom:45.360000px;}
.yeb{bottom:45.405000px;}
.y83{bottom:55.080000px;}
.y9d{bottom:55.110000px;}
.ya9{bottom:55.305000px;}
.y82{bottom:55.440000px;}
.y9c{bottom:55.470000px;}
.ya8{bottom:55.665000px;}
.y3{bottom:57.420000px;}
.ya3{bottom:67.140000px;}
.y2{bottom:77.580000px;}
.y88{bottom:79.590000px;}
.y91{bottom:79.605000px;}
.y87{bottom:79.950000px;}
.y90{bottom:79.965000px;}
.ya2{bottom:103.140000px;}
.ya1{bottom:103.500000px;}
.y80{bottom:113.580000px;}
.y17e{bottom:113.760000px;}
.y122{bottom:114.480000px;}
.y5b{bottom:116.100000px;}
.yd5{bottom:119.880000px;}
.y31{bottom:120.780000px;}
.y19b{bottom:122.580000px;}
.yc6{bottom:127.620000px;}
.y119{bottom:129.960000px;}
.y17d{bottom:134.460000px;}
.y7f{bottom:137.520000px;}
.y121{bottom:138.240000px;}
.yf3{bottom:138.780000px;}
.y5a{bottom:139.860000px;}
.y154{bottom:143.100000px;}
.y19a{bottom:143.280000px;}
.yd4{bottom:143.640000px;}
.y30{bottom:144.720000px;}
.y13f{bottom:146.340000px;}
.yc5{bottom:151.380000px;}
.y118{bottom:153.720000px;}
.y19d{bottom:155.160000px;}
.y7e{bottom:161.280000px;}
.y120{bottom:162.000000px;}
.y59{bottom:163.620000px;}
.y153{bottom:163.800000px;}
.y13e{bottom:167.040000px;}
.y17c{bottom:167.220000px;}
.y9b{bottom:167.400000px;}
.y2f{bottom:168.510000px;}
.yf2{bottom:173.190000px;}
.yc4{bottom:175.350000px;}
.y199{bottom:175.890000px;}
.y117{bottom:177.510000px;}
.y152{bottom:184.530000px;}
.y7d{bottom:185.070000px;}
.y11f{bottom:185.790000px;}
.y58{bottom:187.590000px;}
.y13d{bottom:187.770000px;}
.y17b{bottom:187.950000px;}
.yd3{bottom:191.190000px;}
.y2e{bottom:192.270000px;}
.y198{bottom:196.590000px;}
.yc3{bottom:199.110000px;}
.y116{bottom:201.450000px;}
.y151{bottom:205.230000px;}
.yf1{bottom:207.570000px;}
.y13c{bottom:208.470000px;}
.y17a{bottom:208.650000px;}
.y7c{bottom:208.830000px;}
.y11e{bottom:209.730000px;}
.y57{bottom:211.350000px;}
.yd2{bottom:214.950000px;}
.y2d{bottom:216.030000px;}
.y197{bottom:217.290000px;}
.yc2{bottom:222.870000px;}
.y115{bottom:225.210000px;}
.y150{bottom:225.750000px;}
.y13b{bottom:229.170000px;}
.y179{bottom:229.350000px;}
.y7b{bottom:232.770000px;}
.y11d{bottom:233.490000px;}
.y196{bottom:237.990000px;}
.yd1{bottom:238.890000px;}
.y9a{bottom:239.610000px;}
.y2c{bottom:239.970000px;}
.yf0{bottom:241.950000px;}
.yc1{bottom:246.630000px;}
.y56{bottom:247.170000px;}
.y114{bottom:248.970000px;}
.y13a{bottom:249.870000px;}
.y178{bottom:250.050000px;}
.y7a{bottom:256.530000px;}
.y11c{bottom:257.250000px;}
.y14f{bottom:258.510000px;}
.y195{bottom:258.690000px;}
.yd0{bottom:262.650000px;}
.y2b{bottom:263.730000px;}
.yc0{bottom:270.390000px;}
.y139{bottom:270.570000px;}
.y177{bottom:270.750000px;}
.y113{bottom:272.730000px;}
.yef{bottom:276.150000px;}
.y14e{bottom:279.210000px;}
.y194{bottom:279.390000px;}
.y79{bottom:280.290000px;}
.y11b{bottom:281.010000px;}
.y96{bottom:283.890000px;}
.y55{bottom:284.070000px;}
.ycf{bottom:286.410000px;}
.y2a{bottom:287.490000px;}
.y176{bottom:291.450000px;}
.ybf{bottom:294.330000px;}
.y112{bottom:296.490000px;}
.y14d{bottom:299.910000px;}
.y138{bottom:303.150000px;}
.y78{bottom:304.050000px;}
.y11a{bottom:304.950000px;}
.yce{bottom:310.170000px;}
.yee{bottom:310.530000px;}
.y29{bottom:311.250000px;}
.y175{bottom:312.150000px;}
.ybe{bottom:318.090000px;}
.y111{bottom:320.430000px;}
.y14c{bottom:320.610000px;}
.y137{bottom:323.850000px;}
.y77{bottom:327.990000px;}
.y54{bottom:328.710000px;}
.yed{bottom:332.850000px;}
.ycd{bottom:334.110000px;}
.y28{bottom:335.190000px;}
.y14b{bottom:341.310000px;}
.ybd{bottom:341.850000px;}
.y110{bottom:344.190000px;}
.y136{bottom:344.550000px;}
.y174{bottom:344.910000px;}
.y95{bottom:347.070000px;}
.yec{bottom:350.310000px;}
.y76{bottom:351.750000px;}
.y53{bottom:352.470000px;}
.y193{bottom:353.550000px;}
.ycc{bottom:357.870000px;}
.y27{bottom:358.950000px;}
.y135{bottom:365.250000px;}
.ybc{bottom:365.610000px;}
.y10f{bottom:367.950000px;}
.y14a{bottom:374.070000px;}
.y192{bottom:374.250000px;}
.y75{bottom:375.510000px;}
.y52{bottom:376.230000px;}
.yea{bottom:381.450000px;}
.ycb{bottom:381.630000px;}
.y26{bottom:382.710000px;}
.y94{bottom:382.890000px;}
.y134{bottom:385.950000px;}
.y173{bottom:386.310000px;}
.ybb{bottom:389.550000px;}
.y10e{bottom:391.710000px;}
.y149{bottom:394.770000px;}
.y191{bottom:394.950000px;}
.y8f{bottom:399.630000px;}
.y51{bottom:400.170000px;}
.yca{bottom:405.390000px;}
.y133{bottom:406.650000px;}
.y172{bottom:407.010000px;}
.y74{bottom:411.330000px;}
.yba{bottom:413.355000px;}
.y25{bottom:414.975000px;}
.y148{bottom:415.515000px;}
.y10d{bottom:415.695000px;}
.y50{bottom:423.975000px;}
.y132{bottom:427.395000px;}
.y171{bottom:427.755000px;}
.yc9{bottom:429.375000px;}
.y24{bottom:434.235000px;}
.y147{bottom:436.215000px;}
.yb9{bottom:437.115000px;}
.y10c{bottom:439.455000px;}
.ye9{bottom:443.595000px;}
.y73{bottom:447.195000px;}
.y4f{bottom:447.735000px;}
.y131{bottom:448.095000px;}
.y170{bottom:448.455000px;}
.y23{bottom:453.135000px;}
.y146{bottom:456.915000px;}
.yb8{bottom:460.875000px;}
.y10b{bottom:463.215000px;}
.y130{bottom:468.795000px;}
.y16f{bottom:469.155000px;}
.y72{bottom:470.955000px;}
.y4e{bottom:471.495000px;}
.y22{bottom:472.035000px;}
.ye8{bottom:474.555000px;}
.yc8{bottom:476.895000px;}
.y10a{bottom:486.975000px;}
.y12f{bottom:489.495000px;}
.y16e{bottom:489.855000px;}
.y21{bottom:491.115000px;}
.y71{bottom:494.715000px;}
.y4d{bottom:495.435000px;}
.y8e{bottom:496.335000px;}
.yb7{bottom:497.775000px;}
.yc7{bottom:500.655000px;}
.y1a0{bottom:501.735000px;}
.ye7{bottom:505.695000px;}
.y20{bottom:510.015000px;}
.y12e{bottom:510.195000px;}
.y16d{bottom:510.555000px;}
.y109{bottom:510.915000px;}
.y70{bottom:518.655000px;}
.y4c{bottom:519.195000px;}
.y189{bottom:522.435000px;}
.y1f{bottom:529.095000px;}
.y145{bottom:530.895000px;}
.y16c{bottom:531.255000px;}
.y108{bottom:534.675000px;}
.yb6{bottom:536.655000px;}
.y6f{bottom:542.415000px;}
.y4b{bottom:542.955000px;}
.y188{bottom:543.135000px;}
.y1e{bottom:547.995000px;}
.y144{bottom:551.595000px;}
.y16b{bottom:551.955000px;}
.y107{bottom:558.435000px;}
.yb5{bottom:562.395000px;}
.y12d{bottom:563.655000px;}
.y187{bottom:563.835000px;}
.y6e{bottom:566.175000px;}
.y4a{bottom:566.715000px;}
.y1d{bottom:566.895000px;}
.ye6{bottom:567.795000px;}
.y8c{bottom:568.515000px;}
.y143{bottom:572.295000px;}
.y190{bottom:572.655000px;}
.y106{bottom:582.195000px;}
.y12c{bottom:584.355000px;}
.y16a{bottom:584.535000px;}
.y1c{bottom:585.975000px;}
.y6d{bottom:589.935000px;}
.y49{bottom:590.655000px;}
.y142{bottom:592.995000px;}
.y18f{bottom:593.355000px;}
.yb4{bottom:597.495000px;}
.ye5{bottom:598.755000px;}
.y1b{bottom:604.875000px;}
.y12b{bottom:605.055000px;}
.y169{bottom:605.235000px;}
.y105{bottom:606.135000px;}
.y6c{bottom:613.695000px;}
.y1a1{bottom:614.055000px;}
.y48{bottom:614.415000px;}
.y1a{bottom:623.955000px;}
.y12a{bottom:625.755000px;}
.y168{bottom:625.935000px;}
.ye4{bottom:629.895000px;}
.yb3{bottom:633.315000px;}
.y141{bottom:634.395000px;}
.y6b{bottom:637.635000px;}
.y47{bottom:638.175000px;}
.y104{bottom:640.335000px;}
.y86{bottom:640.695000px;}
.y19{bottom:642.855000px;}
.y129{bottom:646.455000px;}
.y167{bottom:646.635000px;}
.y140{bottom:655.095000px;}
.yb2{bottom:659.085000px;}
.ye3{bottom:660.885000px;}
.y6a{bottom:661.425000px;}
.y18{bottom:661.785000px;}
.y46{bottom:661.965000px;}
.y128{bottom:667.185000px;}
.y166{bottom:667.365000px;}
.y103{bottom:673.125000px;}
.y19c{bottom:679.425000px;}
.y17{bottom:680.865000px;}
.y69{bottom:685.185000px;}
.y45{bottom:685.725000px;}
.y127{bottom:687.885000px;}
.y165{bottom:688.065000px;}
.ye2{bottom:692.025000px;}
.y102{bottom:693.825000px;}
.yb1{bottom:694.185000px;}
.y16{bottom:699.765000px;}
.y186{bottom:700.125000px;}
.y126{bottom:708.585000px;}
.y18e{bottom:708.765000px;}
.y68{bottom:708.945000px;}
.y44{bottom:709.665000px;}
.y101{bottom:711.285000px;}
.y15{bottom:718.845000px;}
.y164{bottom:720.825000px;}
.ye1{bottom:722.985000px;}
.y125{bottom:729.285000px;}
.y18d{bottom:729.465000px;}
.yb0{bottom:730.005000px;}
.y43{bottom:733.425000px;}
.y81{bottom:737.385000px;}
.y14{bottom:737.745000px;}
.y163{bottom:741.525000px;}
.y100{bottom:743.145000px;}
.y67{bottom:744.765000px;}
.yaf{bottom:746.745000px;}
.y124{bottom:749.985000px;}
.y18c{bottom:750.165000px;}
.ye0{bottom:754.125000px;}
.y13{bottom:756.825000px;}
.y42{bottom:757.185000px;}
.y162{bottom:762.225000px;}
.y18b{bottom:770.865000px;}
.y123{bottom:773.745000px;}
.yff{bottom:774.105000px;}
.y12{bottom:775.725000px;}
.y66{bottom:780.585000px;}
.y41{bottom:780.945000px;}
.y161{bottom:782.925000px;}
.ydf{bottom:785.085000px;}
.y18a{bottom:791.565000px;}
.y11{bottom:797.325000px;}
.y160{bottom:803.625000px;}
.y65{bottom:804.345000px;}
.y40{bottom:804.885000px;}
.yfe{bottom:805.245000px;}
.yde{bottom:816.225000px;}
.yad{bottom:818.925000px;}
.y185{bottom:824.325000px;}
.y10{bottom:827.205000px;}
.y64{bottom:828.285000px;}
.y3f{bottom:828.645000px;}
.yfd{bottom:836.205000px;}
.y184{bottom:845.025000px;}
.ydd{bottom:847.185000px;}
.y3e{bottom:852.405000px;}
.yf{bottom:854.745000px;}
.y15f{bottom:856.905000px;}
.y63{bottom:864.105000px;}
.y183{bottom:865.725000px;}
.yfc{bottom:867.345000px;}
.y3d{bottom:876.165000px;}
.ye{bottom:877.065000px;}
.y15e{bottom:877.605000px;}
.ydc{bottom:878.325000px;}
.yac{bottom:885.885000px;}
.y182{bottom:886.425000px;}
.yd{bottom:892.545000px;}
.yfa{bottom:898.305000px;}
.y62{bottom:899.925000px;}
.y3c{bottom:900.105000px;}
.ya7{bottom:902.625000px;}
.y181{bottom:907.170000px;}
.yda{bottom:909.330000px;}
.y15d{bottom:919.050000px;}
.yc{bottom:921.750000px;}
.y61{bottom:923.730000px;}
.y3b{bottom:923.910000px;}
.yf9{bottom:929.490000px;}
.yb{bottom:937.230000px;}
.y15c{bottom:939.750000px;}
.yd8{bottom:941.190000px;}
.y60{bottom:947.490000px;}
.y3a{bottom:947.670000px;}
.yf8{bottom:960.450000px;}
.ya{bottom:966.390000px;}
.y5f{bottom:971.250000px;}
.y39{bottom:971.430000px;}
.ya6{bottom:975.030000px;}
.y15b{bottom:981.150000px;}
.y9{bottom:981.870000px;}
.yd7{bottom:990.510000px;}
.yf7{bottom:991.590000px;}
.y5e{bottom:995.010000px;}
.y38{bottom:995.370000px;}
.y15a{bottom:1001.850000px;}
.y8{bottom:1017.150000px;}
.ya5{bottom:1017.870000px;}
.y5d{bottom:1018.950000px;}
.y37{bottom:1019.130000px;}
.y159{bottom:1022.550000px;}
.yf5{bottom:1023.270000px;}
.yd6{bottom:1024.890000px;}
.ya0{bottom:1034.610000px;}
.y36{bottom:1042.890000px;}
.y7{bottom:1043.070000px;}
.y180{bottom:1043.250000px;}
.y5c{bottom:1054.770000px;}
.y158{bottom:1055.310000px;}
.y17f{bottom:1063.950000px;}
.y35{bottom:1066.650000px;}
.y157{bottom:1076.010000px;}
.y6{bottom:1080.870000px;}
.y19f{bottom:1084.650000px;}
.y34{bottom:1090.590000px;}
.y156{bottom:1096.710000px;}
.yf4{bottom:1103.730000px;}
.y19e{bottom:1105.350000px;}
.y5{bottom:1113.450000px;}
.y33{bottom:1114.350000px;}
.y155{bottom:1117.410000px;}
.y4{bottom:1133.790000px;}
.y32{bottom:1138.110000px;}
.y1{bottom:1194.480000px;}
.h1a{height:23.760000px;}
.h1f{height:30.960000px;}
.h21{height:30.996000px;}
.h20{height:31.140000px;}
.h25{height:31.176000px;}
.h9{height:43.246406px;}
.hb{height:43.304062px;}
.h16{height:44.280000px;}
.h1c{height:48.060000px;}
.h24{height:50.800781px;}
.hc{height:54.596250px;}
.h26{height:59.343750px;}
.h6{height:59.436914px;}
.h11{height:60.960938px;}
.h23{height:62.100000px;}
.h22{height:62.136000px;}
.h1e{height:63.840938px;}
.he{height:64.546875px;}
.h2{height:64.978594px;}
.h3{height:65.884219px;}
.h5{height:66.757500px;}
.h19{height:69.922266px;}
.hf{height:70.628906px;}
.ha{height:70.664062px;}
.h10{height:72.180000px;}
.h17{height:72.216000px;}
.h1b{height:72.396000px;}
.hd{height:72.562500px;}
.h1d{height:74.004654px;}
.h8{height:74.704922px;}
.h7{height:84.898125px;}
.h4{height:90.703125px;}
.h14{height:96.696000px;}
.h15{height:109.200937px;}
.h12{height:115.680937px;}
.h13{height:118.904063px;}
.h18{height:120.276000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:29.700000px;}
.w9{width:40.140000px;}
.w7{width:46.800000px;}
.w3{width:46.980000px;}
.wc{width:81.000000px;}
.we{width:96.120000px;}
.w12{width:105.660000px;}
.w10{width:106.236000px;}
.w11{width:148.536000px;}
.wd{width:222.690000px;}
.wf{width:236.730000px;}
.w13{width:332.850000px;}
.wb{width:371.415000px;}
.w4{width:613.365000px;}
.w8{width:613.545000px;}
.wa{width:620.205000px;}
.w6{width:655.665000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:7.020000px;}
.x10{left:8.100000px;}
.x16{left:11.340000px;}
.x18{left:99.936000px;}
.x1{left:108.035987px;}
.x9{left:111.095987px;}
.x6{left:115.595987px;}
.xb{left:118.835987px;}
.x8{left:127.295987px;}
.x19{left:129.636000px;}
.xf{left:133.236000px;}
.x22{left:135.035987px;}
.x14{left:139.545000px;}
.x1e{left:146.736000px;}
.x1c{left:148.674000px;}
.x3{left:162.569987px;}
.x1f{left:167.259000px;}
.xd{left:171.389987px;}
.x15{left:175.725000px;}
.x11{left:180.210000px;}
.x17{left:187.965000px;}
.x23{left:191.189987px;}
.x21{left:193.179000px;}
.x1d{left:194.979000px;}
.x28{left:196.050000px;}
.x13{left:209.565000px;}
.x7{left:217.649987px;}
.x12{left:226.485000px;}
.x24{left:229.709987px;}
.x4{left:233.129987px;}
.x1a{left:258.879000px;}
.x25{left:261.209987px;}
.x20{left:284.439000px;}
.x1b{left:337.179000px;}
.xa{left:391.574987px;}
.xc{left:419.474987px;}
.x29{left:432.795000px;}
.x2{left:438.194987px;}
.x5{left:446.474987px;}
.x26{left:471.345000px;}
.xe{left:473.144987px;}
.x2d{left:527.144987px;}
.x2a{left:539.025000px;}
.x27{left:552.345000px;}
.x2b{left:687.570000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v1{vertical-align:24.320000pt;}
.v4{vertical-align:42.880000pt;}
.v3{vertical-align:48.640000pt;}
.lsa{letter-spacing:-1.088000pt;}
.lsc{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.128000pt;}
.ls19{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.704000pt;}
.ls1c{letter-spacing:0.800000pt;}
.lsd{letter-spacing:2.383360pt;}
.ls12{letter-spacing:6.720000pt;}
.ls10{letter-spacing:13.760000pt;}
.ls7{letter-spacing:13.824000pt;}
.lse{letter-spacing:14.442667pt;}
.ls5{letter-spacing:14.464000pt;}
.ls11{letter-spacing:14.624000pt;}
.ls13{letter-spacing:30.186667pt;}
.lsf{letter-spacing:34.026667pt;}
.ls15{letter-spacing:112.000000pt;}
.ws1{word-spacing:-59.107733pt;}
.ws6{word-spacing:-18.720000pt;}
.ws11{word-spacing:-16.256000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws10{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws2{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.080000pt;}
.ws7{word-spacing:-14.016000pt;}
.wsc{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.824000pt;}
.wsa{word-spacing:-13.568000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.992000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsf{word-spacing:-3.520000pt;}
.wsd{word-spacing:-2.880000pt;}
.ws5{word-spacing:0.000000pt;}
._7{margin-left:-7.093973pt;}
._5{margin-left:-5.416960pt;}
._6{margin-left:-4.361387pt;}
._0{margin-left:-3.297280pt;}
._b{margin-left:-2.036480pt;}
._1{margin-left:-1.029973pt;}
._4{width:1.009280pt;}
._16{width:2.659840pt;}
._9{width:3.583360pt;}
._a{width:4.483200pt;}
._23{width:5.439573pt;}
._f{width:6.362027pt;}
._e{width:7.364693pt;}
._18{width:8.357973pt;}
._13{width:9.308160pt;}
._12{width:10.442453pt;}
._1a{width:11.488640pt;}
._11{width:12.438187pt;}
._10{width:13.365760pt;}
._25{width:14.362880pt;}
._8{width:15.956480pt;}
._2b{width:17.728000pt;}
._d{width:19.018240pt;}
._c{width:20.254720pt;}
._14{width:21.466880pt;}
._15{width:22.617600pt;}
._17{width:23.777280pt;}
._26{width:24.893440pt;}
._22{width:26.496000pt;}
._28{width:27.648000pt;}
._20{width:28.800000pt;}
._21{width:30.080000pt;}
._2d{width:31.210667pt;}
._33{width:32.170667pt;}
._2f{width:33.093973pt;}
._4a{width:33.992747pt;}
._2e{width:34.944000pt;}
._4d{width:35.904000pt;}
._70{width:36.800000pt;}
._2a{width:37.696000pt;}
._2c{width:38.848000pt;}
._29{width:40.448000pt;}
._39{width:41.856000pt;}
._3a{width:43.425280pt;}
._30{width:45.184000pt;}
._38{width:46.528000pt;}
._1d{width:47.424000pt;}
._1c{width:48.448000pt;}
._37{width:49.792000pt;}
._27{width:51.136000pt;}
._1e{width:52.032000pt;}
._1f{width:52.928000pt;}
._24{width:53.824000pt;}
._3b{width:54.720000pt;}
._54{width:55.694720pt;}
._1b{width:57.024000pt;}
._3c{width:58.048000pt;}
._3d{width:59.552000pt;}
._32{width:61.248000pt;}
._73{width:62.169813pt;}
._19{width:63.113387pt;}
._56{width:64.576000pt;}
._64{width:65.477973pt;}
._60{width:66.432000pt;}
._3e{width:67.370667pt;}
._3f{width:68.313387pt;}
._4c{width:69.553280pt;}
._35{width:70.528000pt;}
._53{width:72.064000pt;}
._63{width:73.664000pt;}
._52{width:75.141973pt;}
._58{width:77.120000pt;}
._5d{width:78.208000pt;}
._5e{width:79.360000pt;}
._71{width:81.088000pt;}
._40{width:83.456000pt;}
._57{width:86.464000pt;}
._4b{width:87.616000pt;}
._50{width:88.832000pt;}
._5f{width:90.816000pt;}
._36{width:91.776000pt;}
._55{width:93.632000pt;}
._5a{width:95.374720pt;}
._69{width:96.448000pt;}
._41{width:98.880000pt;}
._74{width:100.608000pt;}
._5c{width:102.912000pt;}
._5b{width:103.808000pt;}
._7f{width:105.536000pt;}
._61{width:106.944000pt;}
._79{width:108.288640pt;}
._48{width:109.439360pt;}
._65{width:111.808000pt;}
._31{width:113.285973pt;}
._83{width:114.234027pt;}
._80{width:118.464000pt;}
._7c{width:125.376000pt;}
._62{width:127.210667pt;}
._6c{width:128.277333pt;}
._67{width:130.944000pt;}
._68{width:132.224000pt;}
._59{width:134.336000pt;}
._7d{width:135.828693pt;}
._44{width:140.281600pt;}
._6f{width:153.120000pt;}
._84{width:154.496000pt;}
._6d{width:157.504000pt;}
._6e{width:158.656000pt;}
._77{width:160.448000pt;}
._4e{width:169.408000pt;}
._4f{width:170.615680pt;}
._78{width:173.440000pt;}
._7e{width:175.040000pt;}
._51{width:181.760000pt;}
._66{width:190.976000pt;}
._49{width:201.392640pt;}
._6b{width:228.480000pt;}
._43{width:259.557333pt;}
._7a{width:263.296000pt;}
._7b{width:264.384000pt;}
._42{width:313.465600pt;}
._82{width:409.920000pt;}
._46{width:413.002667pt;}
._81{width:470.976000pt;}
._72{width:499.456000pt;}
._45{width:555.856640pt;}
._75{width:574.144000pt;}
._47{width:591.999147pt;}
._76{width:602.496000pt;}
._34{width:643.432960pt;}
._3{width:820.746667pt;}
._2{width:849.440000pt;}
._6a{width:889.869867pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y99{bottom:3.040000pt;}
.y85{bottom:6.240000pt;}
.y9f{bottom:6.266667pt;}
.y8b{bottom:6.400000pt;}
.yab{bottom:6.440000pt;}
.yd9{bottom:12.640000pt;}
.ydb{bottom:12.800000pt;}
.yfb{bottom:12.840000pt;}
.y98{bottom:13.760000pt;}
.y84{bottom:16.960000pt;}
.y9e{bottom:16.986667pt;}
.y8d{bottom:17.120000pt;}
.yaa{bottom:17.160000pt;}
.y97{bottom:24.480000pt;}
.ya4{bottom:27.520000pt;}
.yae{bottom:27.840000pt;}
.y8a{bottom:28.026667pt;}
.y93{bottom:28.040000pt;}
.y89{bottom:38.746667pt;}
.y92{bottom:38.760000pt;}
.yf6{bottom:40.320000pt;}
.yeb{bottom:40.360000pt;}
.y83{bottom:48.960000pt;}
.y9d{bottom:48.986667pt;}
.ya9{bottom:49.160000pt;}
.y82{bottom:49.280000pt;}
.y9c{bottom:49.306667pt;}
.ya8{bottom:49.480000pt;}
.y3{bottom:51.040000pt;}
.ya3{bottom:59.680000pt;}
.y2{bottom:68.960000pt;}
.y88{bottom:70.746667pt;}
.y91{bottom:70.760000pt;}
.y87{bottom:71.066667pt;}
.y90{bottom:71.080000pt;}
.ya2{bottom:91.680000pt;}
.ya1{bottom:92.000000pt;}
.y80{bottom:100.960000pt;}
.y17e{bottom:101.120000pt;}
.y122{bottom:101.760000pt;}
.y5b{bottom:103.200000pt;}
.yd5{bottom:106.560000pt;}
.y31{bottom:107.360000pt;}
.y19b{bottom:108.960000pt;}
.yc6{bottom:113.440000pt;}
.y119{bottom:115.520000pt;}
.y17d{bottom:119.520000pt;}
.y7f{bottom:122.240000pt;}
.y121{bottom:122.880000pt;}
.yf3{bottom:123.360000pt;}
.y5a{bottom:124.320000pt;}
.y154{bottom:127.200000pt;}
.y19a{bottom:127.360000pt;}
.yd4{bottom:127.680000pt;}
.y30{bottom:128.640000pt;}
.y13f{bottom:130.080000pt;}
.yc5{bottom:134.560000pt;}
.y118{bottom:136.640000pt;}
.y19d{bottom:137.920000pt;}
.y7e{bottom:143.360000pt;}
.y120{bottom:144.000000pt;}
.y59{bottom:145.440000pt;}
.y153{bottom:145.600000pt;}
.y13e{bottom:148.480000pt;}
.y17c{bottom:148.640000pt;}
.y9b{bottom:148.800000pt;}
.y2f{bottom:149.786667pt;}
.yf2{bottom:153.946667pt;}
.yc4{bottom:155.866667pt;}
.y199{bottom:156.346667pt;}
.y117{bottom:157.786667pt;}
.y152{bottom:164.026667pt;}
.y7d{bottom:164.506667pt;}
.y11f{bottom:165.146667pt;}
.y58{bottom:166.746667pt;}
.y13d{bottom:166.906667pt;}
.y17b{bottom:167.066667pt;}
.yd3{bottom:169.946667pt;}
.y2e{bottom:170.906667pt;}
.y198{bottom:174.746667pt;}
.yc3{bottom:176.986667pt;}
.y116{bottom:179.066667pt;}
.y151{bottom:182.426667pt;}
.yf1{bottom:184.506667pt;}
.y13c{bottom:185.306667pt;}
.y17a{bottom:185.466667pt;}
.y7c{bottom:185.626667pt;}
.y11e{bottom:186.426667pt;}
.y57{bottom:187.866667pt;}
.yd2{bottom:191.066667pt;}
.y2d{bottom:192.026667pt;}
.y197{bottom:193.146667pt;}
.yc2{bottom:198.106667pt;}
.y115{bottom:200.186667pt;}
.y150{bottom:200.666667pt;}
.y13b{bottom:203.706667pt;}
.y179{bottom:203.866667pt;}
.y7b{bottom:206.906667pt;}
.y11d{bottom:207.546667pt;}
.y196{bottom:211.546667pt;}
.yd1{bottom:212.346667pt;}
.y9a{bottom:212.986667pt;}
.y2c{bottom:213.306667pt;}
.yf0{bottom:215.066667pt;}
.yc1{bottom:219.226667pt;}
.y56{bottom:219.706667pt;}
.y114{bottom:221.306667pt;}
.y13a{bottom:222.106667pt;}
.y178{bottom:222.266667pt;}
.y7a{bottom:228.026667pt;}
.y11c{bottom:228.666667pt;}
.y14f{bottom:229.786667pt;}
.y195{bottom:229.946667pt;}
.yd0{bottom:233.466667pt;}
.y2b{bottom:234.426667pt;}
.yc0{bottom:240.346667pt;}
.y139{bottom:240.506667pt;}
.y177{bottom:240.666667pt;}
.y113{bottom:242.426667pt;}
.yef{bottom:245.466667pt;}
.y14e{bottom:248.186667pt;}
.y194{bottom:248.346667pt;}
.y79{bottom:249.146667pt;}
.y11b{bottom:249.786667pt;}
.y96{bottom:252.346667pt;}
.y55{bottom:252.506667pt;}
.ycf{bottom:254.586667pt;}
.y2a{bottom:255.546667pt;}
.y176{bottom:259.066667pt;}
.ybf{bottom:261.626667pt;}
.y112{bottom:263.546667pt;}
.y14d{bottom:266.586667pt;}
.y138{bottom:269.466667pt;}
.y78{bottom:270.266667pt;}
.y11a{bottom:271.066667pt;}
.yce{bottom:275.706667pt;}
.yee{bottom:276.026667pt;}
.y29{bottom:276.666667pt;}
.y175{bottom:277.466667pt;}
.ybe{bottom:282.746667pt;}
.y111{bottom:284.826667pt;}
.y14c{bottom:284.986667pt;}
.y137{bottom:287.866667pt;}
.y77{bottom:291.546667pt;}
.y54{bottom:292.186667pt;}
.yed{bottom:295.866667pt;}
.ycd{bottom:296.986667pt;}
.y28{bottom:297.946667pt;}
.y14b{bottom:303.386667pt;}
.ybd{bottom:303.866667pt;}
.y110{bottom:305.946667pt;}
.y136{bottom:306.266667pt;}
.y174{bottom:306.586667pt;}
.y95{bottom:308.506667pt;}
.yec{bottom:311.386667pt;}
.y76{bottom:312.666667pt;}
.y53{bottom:313.306667pt;}
.y193{bottom:314.266667pt;}
.ycc{bottom:318.106667pt;}
.y27{bottom:319.066667pt;}
.y135{bottom:324.666667pt;}
.ybc{bottom:324.986667pt;}
.y10f{bottom:327.066667pt;}
.y14a{bottom:332.506667pt;}
.y192{bottom:332.666667pt;}
.y75{bottom:333.786667pt;}
.y52{bottom:334.426667pt;}
.yea{bottom:339.066667pt;}
.ycb{bottom:339.226667pt;}
.y26{bottom:340.186667pt;}
.y94{bottom:340.346667pt;}
.y134{bottom:343.066667pt;}
.y173{bottom:343.386667pt;}
.ybb{bottom:346.266667pt;}
.y10e{bottom:348.186667pt;}
.y149{bottom:350.906667pt;}
.y191{bottom:351.066667pt;}
.y8f{bottom:355.226667pt;}
.y51{bottom:355.706667pt;}
.yca{bottom:360.346667pt;}
.y133{bottom:361.466667pt;}
.y172{bottom:361.786667pt;}
.y74{bottom:365.626667pt;}
.yba{bottom:367.426667pt;}
.y25{bottom:368.866667pt;}
.y148{bottom:369.346667pt;}
.y10d{bottom:369.506667pt;}
.y50{bottom:376.866667pt;}
.y132{bottom:379.906667pt;}
.y171{bottom:380.226667pt;}
.yc9{bottom:381.666667pt;}
.y24{bottom:385.986667pt;}
.y147{bottom:387.746667pt;}
.yb9{bottom:388.546667pt;}
.y10c{bottom:390.626667pt;}
.ye9{bottom:394.306667pt;}
.y73{bottom:397.506667pt;}
.y4f{bottom:397.986667pt;}
.y131{bottom:398.306667pt;}
.y170{bottom:398.626667pt;}
.y23{bottom:402.786667pt;}
.y146{bottom:406.146667pt;}
.yb8{bottom:409.666667pt;}
.y10b{bottom:411.746667pt;}
.y130{bottom:416.706667pt;}
.y16f{bottom:417.026667pt;}
.y72{bottom:418.626667pt;}
.y4e{bottom:419.106667pt;}
.y22{bottom:419.586667pt;}
.ye8{bottom:421.826667pt;}
.yc8{bottom:423.906667pt;}
.y10a{bottom:432.866667pt;}
.y12f{bottom:435.106667pt;}
.y16e{bottom:435.426667pt;}
.y21{bottom:436.546667pt;}
.y71{bottom:439.746667pt;}
.y4d{bottom:440.386667pt;}
.y8e{bottom:441.186667pt;}
.yb7{bottom:442.466667pt;}
.yc7{bottom:445.026667pt;}
.y1a0{bottom:445.986667pt;}
.ye7{bottom:449.506667pt;}
.y20{bottom:453.346667pt;}
.y12e{bottom:453.506667pt;}
.y16d{bottom:453.826667pt;}
.y109{bottom:454.146667pt;}
.y70{bottom:461.026667pt;}
.y4c{bottom:461.506667pt;}
.y189{bottom:464.386667pt;}
.y1f{bottom:470.306667pt;}
.y145{bottom:471.906667pt;}
.y16c{bottom:472.226667pt;}
.y108{bottom:475.266667pt;}
.yb6{bottom:477.026667pt;}
.y6f{bottom:482.146667pt;}
.y4b{bottom:482.626667pt;}
.y188{bottom:482.786667pt;}
.y1e{bottom:487.106667pt;}
.y144{bottom:490.306667pt;}
.y16b{bottom:490.626667pt;}
.y107{bottom:496.386667pt;}
.yb5{bottom:499.906667pt;}
.y12d{bottom:501.026667pt;}
.y187{bottom:501.186667pt;}
.y6e{bottom:503.266667pt;}
.y4a{bottom:503.746667pt;}
.y1d{bottom:503.906667pt;}
.ye6{bottom:504.706667pt;}
.y8c{bottom:505.346667pt;}
.y143{bottom:508.706667pt;}
.y190{bottom:509.026667pt;}
.y106{bottom:517.506667pt;}
.y12c{bottom:519.426667pt;}
.y16a{bottom:519.586667pt;}
.y1c{bottom:520.866667pt;}
.y6d{bottom:524.386667pt;}
.y49{bottom:525.026667pt;}
.y142{bottom:527.106667pt;}
.y18f{bottom:527.426667pt;}
.yb4{bottom:531.106667pt;}
.ye5{bottom:532.226667pt;}
.y1b{bottom:537.666667pt;}
.y12b{bottom:537.826667pt;}
.y169{bottom:537.986667pt;}
.y105{bottom:538.786667pt;}
.y6c{bottom:545.506667pt;}
.y1a1{bottom:545.826667pt;}
.y48{bottom:546.146667pt;}
.y1a{bottom:554.626667pt;}
.y12a{bottom:556.226667pt;}
.y168{bottom:556.386667pt;}
.ye4{bottom:559.906667pt;}
.yb3{bottom:562.946667pt;}
.y141{bottom:563.906667pt;}
.y6b{bottom:566.786667pt;}
.y47{bottom:567.266667pt;}
.y104{bottom:569.186667pt;}
.y86{bottom:569.506667pt;}
.y19{bottom:571.426667pt;}
.y129{bottom:574.626667pt;}
.y167{bottom:574.786667pt;}
.y140{bottom:582.306667pt;}
.yb2{bottom:585.853333pt;}
.ye3{bottom:587.453333pt;}
.y6a{bottom:587.933333pt;}
.y18{bottom:588.253333pt;}
.y46{bottom:588.413333pt;}
.y128{bottom:593.053333pt;}
.y166{bottom:593.213333pt;}
.y103{bottom:598.333333pt;}
.y19c{bottom:603.933333pt;}
.y17{bottom:605.213333pt;}
.y69{bottom:609.053333pt;}
.y45{bottom:609.533333pt;}
.y127{bottom:611.453333pt;}
.y165{bottom:611.613333pt;}
.ye2{bottom:615.133333pt;}
.y102{bottom:616.733333pt;}
.yb1{bottom:617.053333pt;}
.y16{bottom:622.013333pt;}
.y186{bottom:622.333333pt;}
.y126{bottom:629.853333pt;}
.y18e{bottom:630.013333pt;}
.y68{bottom:630.173333pt;}
.y44{bottom:630.813333pt;}
.y101{bottom:632.253333pt;}
.y15{bottom:638.973333pt;}
.y164{bottom:640.733333pt;}
.ye1{bottom:642.653333pt;}
.y125{bottom:648.253333pt;}
.y18d{bottom:648.413333pt;}
.yb0{bottom:648.893333pt;}
.y43{bottom:651.933333pt;}
.y81{bottom:655.453333pt;}
.y14{bottom:655.773333pt;}
.y163{bottom:659.133333pt;}
.y100{bottom:660.573333pt;}
.y67{bottom:662.013333pt;}
.yaf{bottom:663.773333pt;}
.y124{bottom:666.653333pt;}
.y18c{bottom:666.813333pt;}
.ye0{bottom:670.333333pt;}
.y13{bottom:672.733333pt;}
.y42{bottom:673.053333pt;}
.y162{bottom:677.533333pt;}
.y18b{bottom:685.213333pt;}
.y123{bottom:687.773333pt;}
.yff{bottom:688.093333pt;}
.y12{bottom:689.533333pt;}
.y66{bottom:693.853333pt;}
.y41{bottom:694.173333pt;}
.y161{bottom:695.933333pt;}
.ydf{bottom:697.853333pt;}
.y18a{bottom:703.613333pt;}
.y11{bottom:708.733333pt;}
.y160{bottom:714.333333pt;}
.y65{bottom:714.973333pt;}
.y40{bottom:715.453333pt;}
.yfe{bottom:715.773333pt;}
.yde{bottom:725.533333pt;}
.yad{bottom:727.933333pt;}
.y185{bottom:732.733333pt;}
.y10{bottom:735.293333pt;}
.y64{bottom:736.253333pt;}
.y3f{bottom:736.573333pt;}
.yfd{bottom:743.293333pt;}
.y184{bottom:751.133333pt;}
.ydd{bottom:753.053333pt;}
.y3e{bottom:757.693333pt;}
.yf{bottom:759.773333pt;}
.y15f{bottom:761.693333pt;}
.y63{bottom:768.093333pt;}
.y183{bottom:769.533333pt;}
.yfc{bottom:770.973333pt;}
.y3d{bottom:778.813333pt;}
.ye{bottom:779.613333pt;}
.y15e{bottom:780.093333pt;}
.ydc{bottom:780.733333pt;}
.yac{bottom:787.453333pt;}
.y182{bottom:787.933333pt;}
.yd{bottom:793.373333pt;}
.yfa{bottom:798.493333pt;}
.y62{bottom:799.933333pt;}
.y3c{bottom:800.093333pt;}
.ya7{bottom:802.333333pt;}
.y181{bottom:806.373333pt;}
.yda{bottom:808.293333pt;}
.y15d{bottom:816.933333pt;}
.yc{bottom:819.333333pt;}
.y61{bottom:821.093333pt;}
.y3b{bottom:821.253333pt;}
.yf9{bottom:826.213333pt;}
.yb{bottom:833.093333pt;}
.y15c{bottom:835.333333pt;}
.yd8{bottom:836.613333pt;}
.y60{bottom:842.213333pt;}
.y3a{bottom:842.373333pt;}
.yf8{bottom:853.733333pt;}
.ya{bottom:859.013333pt;}
.y5f{bottom:863.333333pt;}
.y39{bottom:863.493333pt;}
.ya6{bottom:866.693333pt;}
.y15b{bottom:872.133333pt;}
.y9{bottom:872.773333pt;}
.yd7{bottom:880.453333pt;}
.yf7{bottom:881.413333pt;}
.y5e{bottom:884.453333pt;}
.y38{bottom:884.773333pt;}
.y15a{bottom:890.533333pt;}
.y8{bottom:904.133333pt;}
.ya5{bottom:904.773333pt;}
.y5d{bottom:905.733333pt;}
.y37{bottom:905.893333pt;}
.y159{bottom:908.933333pt;}
.yf5{bottom:909.573333pt;}
.yd6{bottom:911.013333pt;}
.ya0{bottom:919.653333pt;}
.y36{bottom:927.013333pt;}
.y7{bottom:927.173333pt;}
.y180{bottom:927.333333pt;}
.y5c{bottom:937.573333pt;}
.y158{bottom:938.053333pt;}
.y17f{bottom:945.733333pt;}
.y35{bottom:948.133333pt;}
.y157{bottom:956.453333pt;}
.y6{bottom:960.773333pt;}
.y19f{bottom:964.133333pt;}
.y34{bottom:969.413333pt;}
.y156{bottom:974.853333pt;}
.yf4{bottom:981.093333pt;}
.y19e{bottom:982.533333pt;}
.y5{bottom:989.733333pt;}
.y33{bottom:990.533333pt;}
.y155{bottom:993.253333pt;}
.y4{bottom:1007.813333pt;}
.y32{bottom:1011.653333pt;}
.y1{bottom:1061.760000pt;}
.h1a{height:21.120000pt;}
.h1f{height:27.520000pt;}
.h21{height:27.552000pt;}
.h20{height:27.680000pt;}
.h25{height:27.712000pt;}
.h9{height:38.441250pt;}
.hb{height:38.492500pt;}
.h16{height:39.360000pt;}
.h1c{height:42.720000pt;}
.h24{height:45.156250pt;}
.hc{height:48.530000pt;}
.h26{height:52.750000pt;}
.h6{height:52.832812pt;}
.h11{height:54.187500pt;}
.h23{height:55.200000pt;}
.h22{height:55.232000pt;}
.h1e{height:56.747500pt;}
.he{height:57.375000pt;}
.h2{height:57.758750pt;}
.h3{height:58.563750pt;}
.h5{height:59.340000pt;}
.h19{height:62.153125pt;}
.hf{height:62.781250pt;}
.ha{height:62.812500pt;}
.h10{height:64.160000pt;}
.h17{height:64.192000pt;}
.h1b{height:64.352000pt;}
.hd{height:64.500000pt;}
.h1d{height:65.781915pt;}
.h8{height:66.404375pt;}
.h7{height:75.465000pt;}
.h4{height:80.625000pt;}
.h14{height:85.952000pt;}
.h15{height:97.067500pt;}
.h12{height:102.827500pt;}
.h13{height:105.692500pt;}
.h18{height:106.912000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:26.400000pt;}
.w9{width:35.680000pt;}
.w7{width:41.600000pt;}
.w3{width:41.760000pt;}
.wc{width:72.000000pt;}
.we{width:85.440000pt;}
.w12{width:93.920000pt;}
.w10{width:94.432000pt;}
.w11{width:132.032000pt;}
.wd{width:197.946667pt;}
.wf{width:210.426667pt;}
.w13{width:295.866667pt;}
.wb{width:330.146667pt;}
.w4{width:545.213333pt;}
.w8{width:545.373333pt;}
.wa{width:551.293333pt;}
.w6{width:582.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.240000pt;}
.x10{left:7.200000pt;}
.x16{left:10.080000pt;}
.x18{left:88.832000pt;}
.x1{left:96.031988pt;}
.x9{left:98.751988pt;}
.x6{left:102.751988pt;}
.xb{left:105.631988pt;}
.x8{left:113.151988pt;}
.x19{left:115.232000pt;}
.xf{left:118.432000pt;}
.x22{left:120.031988pt;}
.x14{left:124.040000pt;}
.x1e{left:130.432000pt;}
.x1c{left:132.154667pt;}
.x3{left:144.506655pt;}
.x1f{left:148.674667pt;}
.xd{left:152.346655pt;}
.x15{left:156.200000pt;}
.x11{left:160.186667pt;}
.x17{left:167.080000pt;}
.x23{left:169.946655pt;}
.x21{left:171.714667pt;}
.x1d{left:173.314667pt;}
.x28{left:174.266667pt;}
.x13{left:186.280000pt;}
.x7{left:193.466655pt;}
.x12{left:201.320000pt;}
.x24{left:204.186655pt;}
.x4{left:207.226655pt;}
.x1a{left:230.114667pt;}
.x25{left:232.186655pt;}
.x20{left:252.834667pt;}
.x1b{left:299.714667pt;}
.xa{left:348.066655pt;}
.xc{left:372.866655pt;}
.x29{left:384.706667pt;}
.x2{left:389.506655pt;}
.x5{left:396.866655pt;}
.x26{left:418.973333pt;}
.xe{left:420.573322pt;}
.x2d{left:468.573322pt;}
.x2a{left:479.133333pt;}
.x27{left:490.973333pt;}
.x2b{left:611.173333pt;}
}




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