
    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_878fe0ebb7745438e230e28c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_03654c22e41dae7590fc8bee.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8539de62f845631e75fb3cab.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7f1b4748bd7d00bfaf0e3af1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_34e234aca1870dd356fc462b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_53066b3f773968cc4e080e9c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6cbd6d1f875040d2f413be94.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.063477;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;}
.m2{transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240740,0.000000,0.000000,0.250000,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);}
.m1{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:-66.240000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:32.400000px;}
.ls1e{letter-spacing:-1.656000px;}
.ls1f{letter-spacing:-0.936000px;}
.ls20{letter-spacing:-0.612000px;}
.lsf{letter-spacing:-0.540000px;}
.ls1d{letter-spacing:-0.538800px;}
.ls5{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.269400px;}
.lsd{letter-spacing:-0.223800px;}
.ls21{letter-spacing:-0.216000px;}
.ls1b{letter-spacing:-0.106800px;}
.ls12{letter-spacing:-0.085200px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.ls10{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls22{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.181200px;}
.ls1c{letter-spacing:0.206400px;}
.ls19{letter-spacing:0.206640px;}
.ls11{letter-spacing:0.223800px;}
.ls1a{letter-spacing:0.223920px;}
.ls6{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:6.660000px;}
.ls18{letter-spacing:10.260000px;}
.ls8{letter-spacing:18.900000px;}
.ls3{letter-spacing:66.162720px;}
.lsa{letter-spacing:112.476000px;}
.lsc{letter-spacing:200.316000px;}
.lsb{letter-spacing:449.436000px;}
.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;}
}
.ws15{word-spacing:-59.760000px;}
.wsd{word-spacing:-48.154800px;}
.wsc{word-spacing:-35.315280px;}
.wsf{word-spacing:-32.859600px;}
.ws1{word-spacing:-15.300000px;}
.ws14{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws13{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws12{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.284000px;}
.wse{word-spacing:-12.819600px;}
.ws16{word-spacing:-12.564000px;}
.ws9{word-spacing:-12.420000px;}
.ws11{word-spacing:-12.283800px;}
.wsb{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.ws2{word-spacing:-9.720000px;}
.ws3{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._21{margin-left:-5.306400px;}
._20{margin-left:-4.123440px;}
._22{margin-left:-2.625360px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._a{width:3.602640px;}
._9{width:5.575680px;}
._4{width:6.840000px;}
._c{width:8.279280px;}
._b{width:9.450000px;}
._14{width:11.414160px;}
._d{width:12.474000px;}
._15{width:13.744800px;}
._e{width:15.061680px;}
._f{width:16.308000px;}
._7{width:17.442000px;}
._6{width:18.576000px;}
._8{width:19.926000px;}
._1a{width:20.975760px;}
._17{width:22.350240px;}
._10{width:23.598000px;}
._11{width:24.653280px;}
._1c{width:25.876080px;}
._1b{width:27.131040px;}
._1f{width:28.266480px;}
._16{width:30.238560px;}
._1e{width:32.091120px;}
._1d{width:33.107040px;}
._26{width:35.708160px;}
._24{width:36.793440px;}
._27{width:42.034560px;}
._23{width:50.119920px;}
._2b{width:54.070560px;}
._2c{width:55.849440px;}
._2d{width:57.288960px;}
._29{width:58.648320px;}
._25{width:59.828160px;}
._2a{width:60.865920px;}
._28{width:88.010160px;}
._5{width:155.700000px;}
._12{width:509.086560px;}
._18{width:735.660000px;}
._13{width:865.686720px;}
._19{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y91{bottom:2.520000px;}
.yf9{bottom:2.550000px;}
.ydf{bottom:2.880000px;}
.y30{bottom:3.060000px;}
.y13{bottom:3.240000px;}
.y11b{bottom:3.600000px;}
.y11d{bottom:3.780000px;}
.y38{bottom:9.000000px;}
.y19f{bottom:11.160000px;}
.y3f{bottom:12.240000px;}
.y1bd{bottom:18.534000px;}
.y2f{bottom:18.540000px;}
.ydc{bottom:18.720000px;}
.ydd{bottom:19.800000px;}
.yde{bottom:20.160000px;}
.y18{bottom:20.520000px;}
.y121{bottom:21.060000px;}
.y1b3{bottom:23.034000px;}
.y19e{bottom:26.640000px;}
.y3e{bottom:29.520000px;}
.y1bc{bottom:34.014000px;}
.y2e{bottom:34.020000px;}
.y128{bottom:37.620000px;}
.y17{bottom:37.800000px;}
.y19d{bottom:42.120000px;}
.y3d{bottom:46.800000px;}
.y1bb{bottom:49.494000px;}
.y2d{bottom:49.500000px;}
.y127{bottom:54.900000px;}
.y16{bottom:55.080000px;}
.y195{bottom:57.600000px;}
.y3c{bottom:63.900000px;}
.y1ba{bottom:64.974000px;}
.y18e{bottom:64.980000px;}
.y2c{bottom:65.160000px;}
.y37{bottom:65.880000px;}
.y126{bottom:72.180000px;}
.y194{bottom:73.080000px;}
.y19c{bottom:73.305000px;}
.y1a9{bottom:77.220000px;}
.y1b0{bottom:77.265000px;}
.y1a6{bottom:77.400000px;}
.y1b9{bottom:80.634000px;}
.y2b{bottom:80.640000px;}
.y185{bottom:80.820000px;}
.y15{bottom:81.180000px;}
.y3b{bottom:81.225000px;}
.y5{bottom:88.200000px;}
.y193{bottom:88.740000px;}
.y19b{bottom:88.785000px;}
.y1af{bottom:92.745000px;}
.y1a5{bottom:92.880000px;}
.y1b8{bottom:96.114000px;}
.y2a{bottom:96.120000px;}
.y192{bottom:104.220000px;}
.y19a{bottom:104.265000px;}
.y3a{bottom:107.505000px;}
.y1a4{bottom:108.360000px;}
.y1ae{bottom:108.405000px;}
.y1b7{bottom:111.594000px;}
.y18d{bottom:111.600000px;}
.y29{bottom:111.630000px;}
.yd5{bottom:115.200000px;}
.y14f{bottom:115.560000px;}
.y191{bottom:119.700000px;}
.y199{bottom:119.745000px;}
.y1a3{bottom:123.840000px;}
.y1ad{bottom:123.885000px;}
.y118{bottom:125.820000px;}
.y1b6{bottom:127.074000px;}
.y18c{bottom:127.080000px;}
.y28{bottom:127.290000px;}
.y82{bottom:128.880000px;}
.y14e{bottom:129.420000px;}
.yd4{bottom:132.300000px;}
.yc1{bottom:132.840000px;}
.y190{bottom:135.180000px;}
.y198{bottom:135.225000px;}
.y1be{bottom:136.116000px;}
.y1b2{bottom:137.376000px;}
.y1a2{bottom:139.320000px;}
.y1ac{bottom:139.365000px;}
.y49{bottom:139.716000px;}
.y117{bottom:140.436000px;}
.y1b5{bottom:142.734000px;}
.y18b{bottom:142.740000px;}
.y27{bottom:142.770000px;}
.y14d{bottom:143.136000px;}
.y81{bottom:146.196000px;}
.yd3{bottom:149.616000px;}
.yc0{bottom:150.150000px;}
.y48{bottom:156.990000px;}
.y116{bottom:157.710000px;}
.y1b4{bottom:158.214000px;}
.y18a{bottom:158.220000px;}
.y26{bottom:158.250000px;}
.y80{bottom:163.470000px;}
.yd2{bottom:166.890000px;}
.ybf{bottom:167.250000px;}
.y14c{bottom:170.850000px;}
.y189{bottom:173.700000px;}
.y25{bottom:173.730000px;}
.y47{bottom:174.270000px;}
.y115{bottom:174.990000px;}
.y7f{bottom:180.750000px;}
.yd1{bottom:184.170000px;}
.ybe{bottom:184.530000px;}
.y184{bottom:187.770000px;}
.y188{bottom:189.180000px;}
.y24{bottom:189.390000px;}
.y114{bottom:191.370000px;}
.y46{bottom:191.550000px;}
.y7e{bottom:197.850000px;}
.y14b{bottom:198.390000px;}
.y36{bottom:200.010000px;}
.yd0{bottom:201.450000px;}
.ybd{bottom:201.810000px;}
.y23{bottom:204.870000px;}
.y187{bottom:204.885000px;}
.y113{bottom:205.230000px;}
.y45{bottom:208.650000px;}
.y14a{bottom:212.250000px;}
.y7d{bottom:215.130000px;}
.y35{bottom:217.290000px;}
.ycf{bottom:218.550000px;}
.ybc{bottom:219.090000px;}
.y112{bottom:219.810000px;}
.y22{bottom:220.350000px;}
.y186{bottom:220.365000px;}
.y44{bottom:225.930000px;}
.y7c{bottom:232.410000px;}
.y34{bottom:234.570000px;}
.y21{bottom:235.830000px;}
.ybb{bottom:236.370000px;}
.y111{bottom:237.090000px;}
.y149{bottom:239.790000px;}
.y43{bottom:243.210000px;}
.y7b{bottom:249.690000px;}
.y20{bottom:251.490000px;}
.y33{bottom:251.850000px;}
.yce{bottom:253.110000px;}
.yba{bottom:253.650000px;}
.y110{bottom:254.190000px;}
.y42{bottom:260.490000px;}
.y1f{bottom:266.970000px;}
.y148{bottom:267.330000px;}
.y32{bottom:269.130000px;}
.ycd{bottom:270.390000px;}
.yb9{bottom:270.750000px;}
.y10f{bottom:271.470000px;}
.y41{bottom:277.770000px;}
.y147{bottom:281.190000px;}
.y1e{bottom:282.450000px;}
.y7a{bottom:284.250000px;}
.ycc{bottom:287.670000px;}
.yb8{bottom:288.030000px;}
.y10e{bottom:288.750000px;}
.y40{bottom:295.050000px;}
.y31{bottom:295.230000px;}
.y1d{bottom:297.930000px;}
.y79{bottom:301.350000px;}
.ycb{bottom:304.950000px;}
.yb7{bottom:305.310000px;}
.y10d{bottom:306.030000px;}
.y146{bottom:308.730000px;}
.y1b1{bottom:309.090000px;}
.y39{bottom:311.250000px;}
.y1c{bottom:313.410000px;}
.y78{bottom:318.630000px;}
.yca{bottom:322.050000px;}
.yb6{bottom:322.590000px;}
.y1ab{bottom:324.750000px;}
.y77{bottom:335.910000px;}
.y10c{bottom:336.270000px;}
.y145{bottom:336.450000px;}
.yc9{bottom:339.330000px;}
.yb5{bottom:339.870000px;}
.y144{bottom:350.130000px;}
.y10b{bottom:350.850000px;}
.y76{bottom:353.190000px;}
.yc8{bottom:356.610000px;}
.yb4{bottom:357.150000px;}
.y143{bottom:363.990000px;}
.y10a{bottom:368.130000px;}
.y75{bottom:370.470000px;}
.yb3{bottom:373.530000px;}
.yc7{bottom:373.890000px;}
.y142{bottom:377.850000px;}
.y109{bottom:385.410000px;}
.y74{bottom:387.795000px;}
.yb2{bottom:388.155000px;}
.yc6{bottom:391.215000px;}
.y141{bottom:391.575000px;}
.y1a{bottom:400.350000px;}
.y108{bottom:402.735000px;}
.y73{bottom:404.895000px;}
.yb1{bottom:405.435000px;}
.yc5{bottom:408.495000px;}
.y140{bottom:419.295000px;}
.y107{bottom:419.835000px;}
.y72{bottom:422.175000px;}
.yb0{bottom:422.715000px;}
.y183{bottom:424.155000px;}
.yc4{bottom:425.595000px;}
.y13f{bottom:432.975000px;}
.y106{bottom:437.115000px;}
.y182{bottom:438.735000px;}
.y71{bottom:439.455000px;}
.yaf{bottom:439.995000px;}
.y19{bottom:442.515000px;}
.yc3{bottom:442.875000px;}
.y13e{bottom:446.835000px;}
.y105{bottom:454.395000px;}
.y181{bottom:455.295000px;}
.y70{bottom:456.735000px;}
.yae{bottom:457.095000px;}
.yc2{bottom:459.435000px;}
.y13d{bottom:460.695000px;}
.y180{bottom:468.975000px;}
.y104{bottom:471.675000px;}
.y6f{bottom:474.015000px;}
.yad{bottom:474.375000px;}
.y13c{bottom:475.095000px;}
.y1aa{bottom:477.795000px;}
.y17f{bottom:482.835000px;}
.y103{bottom:488.955000px;}
.y6e{bottom:491.115000px;}
.yac{bottom:491.655000px;}
.y1a8{bottom:493.275000px;}
.y17e{bottom:496.695000px;}
.y13b{bottom:505.515000px;}
.y102{bottom:506.055000px;}
.y6d{bottom:508.395000px;}
.yab{bottom:508.935000px;}
.y17d{bottom:510.375000px;}
.y13a{bottom:519.915000px;}
.y101{bottom:523.335000px;}
.y17c{bottom:524.235000px;}
.y6c{bottom:525.675000px;}
.yaa{bottom:526.215000px;}
.y1b{bottom:530.715000px;}
.y139{bottom:537.195000px;}
.y17b{bottom:538.095000px;}
.y100{bottom:540.615000px;}
.y6b{bottom:542.955000px;}
.ya9{bottom:543.315000px;}
.y17a{bottom:551.775000px;}
.y138{bottom:554.475000px;}
.yff{bottom:557.175000px;}
.y6a{bottom:560.235000px;}
.ya8{bottom:560.595000px;}
.y179{bottom:565.635000px;}
.yfe{bottom:571.035000px;}
.y69{bottom:577.515000px;}
.ya7{bottom:577.875000px;}
.y178{bottom:579.495000px;}
.yfd{bottom:584.715000px;}
.y137{bottom:584.895000px;}
.y177{bottom:593.175000px;}
.y68{bottom:594.615000px;}
.ya6{bottom:595.155000px;}
.yfc{bottom:598.575000px;}
.y136{bottom:599.295000px;}
.y176{bottom:607.035000px;}
.yfb{bottom:610.635000px;}
.y67{bottom:611.895000px;}
.ya5{bottom:612.435000px;}
.y135{bottom:616.575000px;}
.y175{bottom:620.895000px;}
.yfa{bottom:624.315000px;}
.y66{bottom:629.175000px;}
.ya4{bottom:629.715000px;}
.y134{bottom:633.855000px;}
.y174{bottom:634.575000px;}
.yf8{bottom:638.175000px;}
.y1a7{bottom:646.305000px;}
.y65{bottom:646.485000px;}
.y173{bottom:648.465000px;}
.y133{bottom:650.445000px;}
.yf7{bottom:652.065000px;}
.y1a1{bottom:661.785000px;}
.y172{bottom:662.325000px;}
.ya3{bottom:663.405000px;}
.y64{bottom:663.765000px;}
.y132{bottom:664.125000px;}
.yf6{bottom:665.745000px;}
.y171{bottom:676.005000px;}
.ya2{bottom:677.265000px;}
.y131{bottom:678.705000px;}
.yf5{bottom:679.605000px;}
.y63{bottom:681.045000px;}
.ya1{bottom:689.325000px;}
.y170{bottom:689.865000px;}
.yf4{bottom:693.465000px;}
.y130{bottom:695.985000px;}
.y62{bottom:698.145000px;}
.ya0{bottom:703.005000px;}
.y16f{bottom:703.725000px;}
.yf3{bottom:707.145000px;}
.y12f{bottom:713.265000px;}
.y61{bottom:715.425000px;}
.y9f{bottom:716.865000px;}
.y16e{bottom:717.405000px;}
.yf2{bottom:721.005000px;}
.y12e{bottom:729.825000px;}
.y9e{bottom:730.725000px;}
.y16d{bottom:731.265000px;}
.y60{bottom:732.705000px;}
.yf1{bottom:734.865000px;}
.y12d{bottom:743.505000px;}
.y9d{bottom:744.405000px;}
.y16c{bottom:745.125000px;}
.yf0{bottom:748.545000px;}
.y5f{bottom:749.985000px;}
.y12c{bottom:758.085000px;}
.y9c{bottom:758.265000px;}
.y16b{bottom:758.805000px;}
.y14{bottom:761.505000px;}
.yef{bottom:762.405000px;}
.y5e{bottom:767.265000px;}
.y9b{bottom:772.125000px;}
.y16a{bottom:772.665000px;}
.y12b{bottom:775.365000px;}
.yee{bottom:776.265000px;}
.y5d{bottom:784.545000px;}
.y9a{bottom:785.805000px;}
.y169{bottom:786.525000px;}
.yed{bottom:789.945000px;}
.y12a{bottom:791.925000px;}
.y99{bottom:799.665000px;}
.y168{bottom:800.205000px;}
.y5c{bottom:801.645000px;}
.yec{bottom:803.805000px;}
.y129{bottom:805.605000px;}
.y98{bottom:813.525000px;}
.y167{bottom:814.065000px;}
.y1a0{bottom:814.785000px;}
.y125{bottom:816.945000px;}
.yeb{bottom:817.665000px;}
.y5b{bottom:818.925000px;}
.y97{bottom:827.205000px;}
.y166{bottom:827.745000px;}
.y197{bottom:830.265000px;}
.yea{bottom:831.345000px;}
.y5a{bottom:836.205000px;}
.y96{bottom:841.065000px;}
.y165{bottom:841.605000px;}
.ye9{bottom:845.205000px;}
.y59{bottom:853.485000px;}
.y95{bottom:854.925000px;}
.y164{bottom:855.465000px;}
.ye8{bottom:859.065000px;}
.y12{bottom:866.625000px;}
.y94{bottom:868.605000px;}
.y163{bottom:869.145000px;}
.y58{bottom:870.765000px;}
.ye7{bottom:872.745000px;}
.y93{bottom:882.465000px;}
.y162{bottom:883.005000px;}
.ye6{bottom:886.605000px;}
.y57{bottom:887.865000px;}
.y92{bottom:896.370000px;}
.y161{bottom:896.910000px;}
.y11{bottom:898.350000px;}
.ye5{bottom:900.510000px;}
.y56{bottom:905.190000px;}
.y124{bottom:905.730000px;}
.y160{bottom:910.590000px;}
.y90{bottom:910.770000px;}
.ye4{bottom:914.190000px;}
.y10{bottom:915.630000px;}
.y123{bottom:917.790000px;}
.y55{bottom:922.470000px;}
.y15f{bottom:924.450000px;}
.ye3{bottom:928.050000px;}
.y122{bottom:935.070000px;}
.yf{bottom:936.690000px;}
.y15e{bottom:938.310000px;}
.y54{bottom:939.750000px;}
.ye2{bottom:941.910000px;}
.y8f{bottom:945.150000px;}
.ye{bottom:950.370000px;}
.y15d{bottom:951.990000px;}
.y120{bottom:952.170000px;}
.ye1{bottom:955.590000px;}
.y53{bottom:957.030000px;}
.y8e{bottom:959.010000px;}
.yd{bottom:964.230000px;}
.y15c{bottom:965.850000px;}
.ye0{bottom:969.450000px;}
.y8d{bottom:973.410000px;}
.y52{bottom:974.310000px;}
.yc{bottom:978.090000px;}
.y196{bottom:979.170000px;}
.y15b{bottom:979.710000px;}
.ydb{bottom:984.390000px;}
.y11f{bottom:986.730000px;}
.yb{bottom:987.990000px;}
.y8c{bottom:990.690000px;}
.y51{bottom:991.410000px;}
.y15a{bottom:993.390000px;}
.y18f{bottom:994.650000px;}
.y11e{bottom:1004.010000px;}
.ya{bottom:1005.270000px;}
.y159{bottom:1007.250000px;}
.y8b{bottom:1007.970000px;}
.y50{bottom:1008.690000px;}
.yda{bottom:1014.270000px;}
.y158{bottom:1021.110000px;}
.y11c{bottom:1021.290000px;}
.y9{bottom:1022.550000px;}
.y8a{bottom:1025.250000px;}
.y4f{bottom:1025.970000px;}
.yd9{bottom:1032.090000px;}
.y157{bottom:1034.790000px;}
.y11a{bottom:1038.570000px;}
.y8{bottom:1039.830000px;}
.y89{bottom:1042.530000px;}
.y4e{bottom:1043.250000px;}
.y156{bottom:1048.650000px;}
.yd8{bottom:1049.370000px;}
.y119{bottom:1056.570000px;}
.y7{bottom:1059.090000px;}
.y88{bottom:1059.810000px;}
.y4d{bottom:1060.530000px;}
.y155{bottom:1062.510000px;}
.yd7{bottom:1065.930000px;}
.y154{bottom:1076.190000px;}
.y87{bottom:1076.910000px;}
.y4c{bottom:1077.810000px;}
.yd6{bottom:1079.790000px;}
.y6{bottom:1086.630000px;}
.y153{bottom:1090.050000px;}
.y86{bottom:1094.190000px;}
.y4b{bottom:1094.910000px;}
.y152{bottom:1103.910000px;}
.y85{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y151{bottom:1117.590000px;}
.y84{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y150{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y4a{bottom:1160.640000px;}
.y83{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h2e{height:5.653125px;}
.h18{height:13.680000px;}
.h17{height:13.860000px;}
.h19{height:13.896000px;}
.h20{height:14.220000px;}
.h28{height:15.480000px;}
.h2c{height:15.660000px;}
.h15{height:17.100000px;}
.h14{height:17.280000px;}
.h8{height:26.136000px;}
.h6{height:29.678906px;}
.h1d{height:29.880000px;}
.h22{height:34.560000px;}
.h21{height:34.884492px;}
.he{height:39.049805px;}
.h7{height:40.651172px;}
.h1e{height:40.655391px;}
.h1b{height:43.215117px;}
.h24{height:47.321367px;}
.h16{height:47.344922px;}
.h1c{height:47.678906px;}
.h1a{height:48.616875px;}
.h11{height:52.971680px;}
.hd{height:52.998047px;}
.h26{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h13{height:62.211094px;}
.h9{height:70.664062px;}
.h1f{height:79.744922px;}
.h23{height:86.256000px;}
.h10{height:87.480000px;}
.h5{height:96.508125px;}
.ha{height:104.220000px;}
.h12{height:130.536000px;}
.h27{height:148.860000px;}
.h29{height:148.896000px;}
.h2a{height:153.000000px;}
.h2b{height:153.030000px;}
.h2d{height:171.720000px;}
.h25{height:233.850000px;}
.hf{height:318.270000px;}
.hc{height:335.010000px;}
.hb{height:423.210000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w19{width:27.900000px;}
.w14{width:28.080000px;}
.w1a{width:28.116000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w15{width:30.240000px;}
.w1b{width:31.140000px;}
.w16{width:32.220000px;}
.w18{width:32.940000px;}
.w1c{width:33.660000px;}
.w17{width:34.596000px;}
.w10{width:57.420000px;}
.w12{width:62.100000px;}
.wb{width:75.240000px;}
.wd{width:79.056000px;}
.wa{width:87.840000px;}
.we{width:102.060000px;}
.wf{width:102.096000px;}
.w20{width:126.720000px;}
.w11{width:183.810000px;}
.w1f{width:198.570000px;}
.w9{width:201.315000px;}
.w3{width:209.010000px;}
.w1d{width:214.770000px;}
.w13{width:232.410000px;}
.w1e{width:244.290000px;}
.wc{width:245.910000px;}
.w5{width:433.155000px;}
.w21{width:548.565000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.xe{left:10.620000px;}
.x31{left:12.060000px;}
.x1e{left:14.040000px;}
.x32{left:15.120000px;}
.x29{left:17.100000px;}
.x1c{left:18.585000px;}
.x30{left:20.340000px;}
.x1d{left:21.960000px;}
.x33{left:23.400000px;}
.x2a{left:25.560000px;}
.x25{left:28.800000px;}
.x2b{left:30.960000px;}
.x23{left:32.040000px;}
.x1b{left:37.620000px;}
.x2c{left:39.420000px;}
.x2e{left:42.480000px;}
.x1a{left:43.920000px;}
.x2d{left:51.120000px;}
.x2f{left:59.580000px;}
.x4a{left:63.354000px;}
.x27{left:69.480000px;}
.x17{left:77.625000px;}
.x20{left:92.880000px;}
.x10{left:106.560000px;}
.x48{left:114.294000px;}
.x49{left:116.454000px;}
.x46{left:119.556000px;}
.xb{left:125.496000px;}
.x1{left:127.655987px;}
.x34{left:128.916000px;}
.x2{left:130.895987px;}
.x1f{left:132.335987px;}
.x7{left:137.015987px;}
.x13{left:154.649987px;}
.x9{left:156.629987px;}
.x45{left:159.689987px;}
.x5{left:164.729987px;}
.x12{left:181.649987px;}
.xa{left:194.429987px;}
.x6{left:215.309987px;}
.x14{left:233.309987px;}
.x47{left:246.270000px;}
.x8{left:256.709987px;}
.x16{left:275.070000px;}
.x3{left:282.854987px;}
.xd{left:334.515000px;}
.x43{left:343.155000px;}
.x28{left:347.655000px;}
.xf{left:355.755000px;}
.x35{left:361.335000px;}
.x36{left:389.415000px;}
.x21{left:409.755000px;}
.x37{left:419.655000px;}
.x11{left:425.055000px;}
.x38{left:451.875000px;}
.x4{left:457.274987px;}
.x18{left:476.385000px;}
.x39{left:486.465000px;}
.x22{left:488.805000px;}
.x3a{left:519.405000px;}
.x3b{left:547.305000px;}
.x19{left:564.225000px;}
.x3c{left:575.385000px;}
.x44{left:587.445000px;}
.x24{left:591.045000px;}
.x3d{left:603.465000px;}
.x3e{left:631.545000px;}
.x3f{left:659.670000px;}
.x40{left:690.810000px;}
.x26{left:693.150000px;}
.x41{left:723.750000px;}
.x42{left:751.830000px;}
.x15{left:756.870000px;}
@media print{
.v3{vertical-align:-58.880000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:28.800000pt;}
.ls1e{letter-spacing:-1.472000pt;}
.ls1f{letter-spacing:-0.832000pt;}
.ls20{letter-spacing:-0.544000pt;}
.lsf{letter-spacing:-0.480000pt;}
.ls1d{letter-spacing:-0.478933pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.239467pt;}
.lsd{letter-spacing:-0.198933pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls12{letter-spacing:-0.075733pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls10{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls22{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.161067pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls19{letter-spacing:0.183680pt;}
.ls11{letter-spacing:0.198933pt;}
.ls1a{letter-spacing:0.199040pt;}
.ls6{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:5.920000pt;}
.ls18{letter-spacing:9.120000pt;}
.ls8{letter-spacing:16.800000pt;}
.ls3{letter-spacing:58.811307pt;}
.lsa{letter-spacing:99.978667pt;}
.lsc{letter-spacing:178.058667pt;}
.lsb{letter-spacing:399.498667pt;}
.ws15{word-spacing:-53.120000pt;}
.wsd{word-spacing:-42.804267pt;}
.wsc{word-spacing:-31.391360pt;}
.wsf{word-spacing:-29.208533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws14{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws13{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws12{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.808000pt;}
.wse{word-spacing:-11.395200pt;}
.ws16{word-spacing:-11.168000pt;}
.ws9{word-spacing:-11.040000pt;}
.ws11{word-spacing:-10.918933pt;}
.wsb{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.ws2{word-spacing:-8.640000pt;}
.ws3{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._21{margin-left:-4.716800pt;}
._20{margin-left:-3.665280pt;}
._22{margin-left:-2.333653pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._a{width:3.202347pt;}
._9{width:4.956160pt;}
._4{width:6.080000pt;}
._c{width:7.359360pt;}
._b{width:8.400000pt;}
._14{width:10.145920pt;}
._d{width:11.088000pt;}
._15{width:12.217600pt;}
._e{width:13.388160pt;}
._f{width:14.496000pt;}
._7{width:15.504000pt;}
._6{width:16.512000pt;}
._8{width:17.712000pt;}
._1a{width:18.645120pt;}
._17{width:19.866880pt;}
._10{width:20.976000pt;}
._11{width:21.914027pt;}
._1c{width:23.000960pt;}
._1b{width:24.116480pt;}
._1f{width:25.125760pt;}
._16{width:26.878720pt;}
._1e{width:28.525440pt;}
._1d{width:29.428480pt;}
._26{width:31.740587pt;}
._24{width:32.705280pt;}
._27{width:37.364053pt;}
._23{width:44.551040pt;}
._2b{width:48.062720pt;}
._2c{width:49.643947pt;}
._2d{width:50.923520pt;}
._29{width:52.131840pt;}
._25{width:53.180587pt;}
._2a{width:54.103040pt;}
._28{width:78.231253pt;}
._5{width:138.400000pt;}
._12{width:452.521387pt;}
._18{width:653.920000pt;}
._13{width:769.499307pt;}
._19{width:953.866667pt;}
._3{width:979.477333pt;}
.fs7{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:2.240000pt;}
.yf9{bottom:2.266667pt;}
.ydf{bottom:2.560000pt;}
.y30{bottom:2.720000pt;}
.y13{bottom:2.880000pt;}
.y11b{bottom:3.200000pt;}
.y11d{bottom:3.360000pt;}
.y38{bottom:8.000000pt;}
.y19f{bottom:9.920000pt;}
.y3f{bottom:10.880000pt;}
.y1bd{bottom:16.474667pt;}
.y2f{bottom:16.480000pt;}
.ydc{bottom:16.640000pt;}
.ydd{bottom:17.600000pt;}
.yde{bottom:17.920000pt;}
.y18{bottom:18.240000pt;}
.y121{bottom:18.720000pt;}
.y1b3{bottom:20.474667pt;}
.y19e{bottom:23.680000pt;}
.y3e{bottom:26.240000pt;}
.y1bc{bottom:30.234667pt;}
.y2e{bottom:30.240000pt;}
.y128{bottom:33.440000pt;}
.y17{bottom:33.600000pt;}
.y19d{bottom:37.440000pt;}
.y3d{bottom:41.600000pt;}
.y1bb{bottom:43.994667pt;}
.y2d{bottom:44.000000pt;}
.y127{bottom:48.800000pt;}
.y16{bottom:48.960000pt;}
.y195{bottom:51.200000pt;}
.y3c{bottom:56.800000pt;}
.y1ba{bottom:57.754667pt;}
.y18e{bottom:57.760000pt;}
.y2c{bottom:57.920000pt;}
.y37{bottom:58.560000pt;}
.y126{bottom:64.160000pt;}
.y194{bottom:64.960000pt;}
.y19c{bottom:65.160000pt;}
.y1a9{bottom:68.640000pt;}
.y1b0{bottom:68.680000pt;}
.y1a6{bottom:68.800000pt;}
.y1b9{bottom:71.674667pt;}
.y2b{bottom:71.680000pt;}
.y185{bottom:71.840000pt;}
.y15{bottom:72.160000pt;}
.y3b{bottom:72.200000pt;}
.y5{bottom:78.400000pt;}
.y193{bottom:78.880000pt;}
.y19b{bottom:78.920000pt;}
.y1af{bottom:82.440000pt;}
.y1a5{bottom:82.560000pt;}
.y1b8{bottom:85.434667pt;}
.y2a{bottom:85.440000pt;}
.y192{bottom:92.640000pt;}
.y19a{bottom:92.680000pt;}
.y3a{bottom:95.560000pt;}
.y1a4{bottom:96.320000pt;}
.y1ae{bottom:96.360000pt;}
.y1b7{bottom:99.194667pt;}
.y18d{bottom:99.200000pt;}
.y29{bottom:99.226667pt;}
.yd5{bottom:102.400000pt;}
.y14f{bottom:102.720000pt;}
.y191{bottom:106.400000pt;}
.y199{bottom:106.440000pt;}
.y1a3{bottom:110.080000pt;}
.y1ad{bottom:110.120000pt;}
.y118{bottom:111.840000pt;}
.y1b6{bottom:112.954667pt;}
.y18c{bottom:112.960000pt;}
.y28{bottom:113.146667pt;}
.y82{bottom:114.560000pt;}
.y14e{bottom:115.040000pt;}
.yd4{bottom:117.600000pt;}
.yc1{bottom:118.080000pt;}
.y190{bottom:120.160000pt;}
.y198{bottom:120.200000pt;}
.y1be{bottom:120.992000pt;}
.y1b2{bottom:122.112000pt;}
.y1a2{bottom:123.840000pt;}
.y1ac{bottom:123.880000pt;}
.y49{bottom:124.192000pt;}
.y117{bottom:124.832000pt;}
.y1b5{bottom:126.874667pt;}
.y18b{bottom:126.880000pt;}
.y27{bottom:126.906667pt;}
.y14d{bottom:127.232000pt;}
.y81{bottom:129.952000pt;}
.yd3{bottom:132.992000pt;}
.yc0{bottom:133.466667pt;}
.y48{bottom:139.546667pt;}
.y116{bottom:140.186667pt;}
.y1b4{bottom:140.634667pt;}
.y18a{bottom:140.640000pt;}
.y26{bottom:140.666667pt;}
.y80{bottom:145.306667pt;}
.yd2{bottom:148.346667pt;}
.ybf{bottom:148.666667pt;}
.y14c{bottom:151.866667pt;}
.y189{bottom:154.400000pt;}
.y25{bottom:154.426667pt;}
.y47{bottom:154.906667pt;}
.y115{bottom:155.546667pt;}
.y7f{bottom:160.666667pt;}
.yd1{bottom:163.706667pt;}
.ybe{bottom:164.026667pt;}
.y184{bottom:166.906667pt;}
.y188{bottom:168.160000pt;}
.y24{bottom:168.346667pt;}
.y114{bottom:170.106667pt;}
.y46{bottom:170.266667pt;}
.y7e{bottom:175.866667pt;}
.y14b{bottom:176.346667pt;}
.y36{bottom:177.786667pt;}
.yd0{bottom:179.066667pt;}
.ybd{bottom:179.386667pt;}
.y23{bottom:182.106667pt;}
.y187{bottom:182.120000pt;}
.y113{bottom:182.426667pt;}
.y45{bottom:185.466667pt;}
.y14a{bottom:188.666667pt;}
.y7d{bottom:191.226667pt;}
.y35{bottom:193.146667pt;}
.ycf{bottom:194.266667pt;}
.ybc{bottom:194.746667pt;}
.y112{bottom:195.386667pt;}
.y22{bottom:195.866667pt;}
.y186{bottom:195.880000pt;}
.y44{bottom:200.826667pt;}
.y7c{bottom:206.586667pt;}
.y34{bottom:208.506667pt;}
.y21{bottom:209.626667pt;}
.ybb{bottom:210.106667pt;}
.y111{bottom:210.746667pt;}
.y149{bottom:213.146667pt;}
.y43{bottom:216.186667pt;}
.y7b{bottom:221.946667pt;}
.y20{bottom:223.546667pt;}
.y33{bottom:223.866667pt;}
.yce{bottom:224.986667pt;}
.yba{bottom:225.466667pt;}
.y110{bottom:225.946667pt;}
.y42{bottom:231.546667pt;}
.y1f{bottom:237.306667pt;}
.y148{bottom:237.626667pt;}
.y32{bottom:239.226667pt;}
.ycd{bottom:240.346667pt;}
.yb9{bottom:240.666667pt;}
.y10f{bottom:241.306667pt;}
.y41{bottom:246.906667pt;}
.y147{bottom:249.946667pt;}
.y1e{bottom:251.066667pt;}
.y7a{bottom:252.666667pt;}
.ycc{bottom:255.706667pt;}
.yb8{bottom:256.026667pt;}
.y10e{bottom:256.666667pt;}
.y40{bottom:262.266667pt;}
.y31{bottom:262.426667pt;}
.y1d{bottom:264.826667pt;}
.y79{bottom:267.866667pt;}
.ycb{bottom:271.066667pt;}
.yb7{bottom:271.386667pt;}
.y10d{bottom:272.026667pt;}
.y146{bottom:274.426667pt;}
.y1b1{bottom:274.746667pt;}
.y39{bottom:276.666667pt;}
.y1c{bottom:278.586667pt;}
.y78{bottom:283.226667pt;}
.yca{bottom:286.266667pt;}
.yb6{bottom:286.746667pt;}
.y1ab{bottom:288.666667pt;}
.y77{bottom:298.586667pt;}
.y10c{bottom:298.906667pt;}
.y145{bottom:299.066667pt;}
.yc9{bottom:301.626667pt;}
.yb5{bottom:302.106667pt;}
.y144{bottom:311.226667pt;}
.y10b{bottom:311.866667pt;}
.y76{bottom:313.946667pt;}
.yc8{bottom:316.986667pt;}
.yb4{bottom:317.466667pt;}
.y143{bottom:323.546667pt;}
.y10a{bottom:327.226667pt;}
.y75{bottom:329.306667pt;}
.yb3{bottom:332.026667pt;}
.yc7{bottom:332.346667pt;}
.y142{bottom:335.866667pt;}
.y109{bottom:342.586667pt;}
.y74{bottom:344.706667pt;}
.yb2{bottom:345.026667pt;}
.yc6{bottom:347.746667pt;}
.y141{bottom:348.066667pt;}
.y1a{bottom:355.866667pt;}
.y108{bottom:357.986667pt;}
.y73{bottom:359.906667pt;}
.yb1{bottom:360.386667pt;}
.yc5{bottom:363.106667pt;}
.y140{bottom:372.706667pt;}
.y107{bottom:373.186667pt;}
.y72{bottom:375.266667pt;}
.yb0{bottom:375.746667pt;}
.y183{bottom:377.026667pt;}
.yc4{bottom:378.306667pt;}
.y13f{bottom:384.866667pt;}
.y106{bottom:388.546667pt;}
.y182{bottom:389.986667pt;}
.y71{bottom:390.626667pt;}
.yaf{bottom:391.106667pt;}
.y19{bottom:393.346667pt;}
.yc3{bottom:393.666667pt;}
.y13e{bottom:397.186667pt;}
.y105{bottom:403.906667pt;}
.y181{bottom:404.706667pt;}
.y70{bottom:405.986667pt;}
.yae{bottom:406.306667pt;}
.yc2{bottom:408.386667pt;}
.y13d{bottom:409.506667pt;}
.y180{bottom:416.866667pt;}
.y104{bottom:419.266667pt;}
.y6f{bottom:421.346667pt;}
.yad{bottom:421.666667pt;}
.y13c{bottom:422.306667pt;}
.y1aa{bottom:424.706667pt;}
.y17f{bottom:429.186667pt;}
.y103{bottom:434.626667pt;}
.y6e{bottom:436.546667pt;}
.yac{bottom:437.026667pt;}
.y1a8{bottom:438.466667pt;}
.y17e{bottom:441.506667pt;}
.y13b{bottom:449.346667pt;}
.y102{bottom:449.826667pt;}
.y6d{bottom:451.906667pt;}
.yab{bottom:452.386667pt;}
.y17d{bottom:453.666667pt;}
.y13a{bottom:462.146667pt;}
.y101{bottom:465.186667pt;}
.y17c{bottom:465.986667pt;}
.y6c{bottom:467.266667pt;}
.yaa{bottom:467.746667pt;}
.y1b{bottom:471.746667pt;}
.y139{bottom:477.506667pt;}
.y17b{bottom:478.306667pt;}
.y100{bottom:480.546667pt;}
.y6b{bottom:482.626667pt;}
.ya9{bottom:482.946667pt;}
.y17a{bottom:490.466667pt;}
.y138{bottom:492.866667pt;}
.yff{bottom:495.266667pt;}
.y6a{bottom:497.986667pt;}
.ya8{bottom:498.306667pt;}
.y179{bottom:502.786667pt;}
.yfe{bottom:507.586667pt;}
.y69{bottom:513.346667pt;}
.ya7{bottom:513.666667pt;}
.y178{bottom:515.106667pt;}
.yfd{bottom:519.746667pt;}
.y137{bottom:519.906667pt;}
.y177{bottom:527.266667pt;}
.y68{bottom:528.546667pt;}
.ya6{bottom:529.026667pt;}
.yfc{bottom:532.066667pt;}
.y136{bottom:532.706667pt;}
.y176{bottom:539.586667pt;}
.yfb{bottom:542.786667pt;}
.y67{bottom:543.906667pt;}
.ya5{bottom:544.386667pt;}
.y135{bottom:548.066667pt;}
.y175{bottom:551.906667pt;}
.yfa{bottom:554.946667pt;}
.y66{bottom:559.266667pt;}
.ya4{bottom:559.746667pt;}
.y134{bottom:563.426667pt;}
.y174{bottom:564.066667pt;}
.yf8{bottom:567.266667pt;}
.y1a7{bottom:574.493333pt;}
.y65{bottom:574.653333pt;}
.y173{bottom:576.413333pt;}
.y133{bottom:578.173333pt;}
.yf7{bottom:579.613333pt;}
.y1a1{bottom:588.253333pt;}
.y172{bottom:588.733333pt;}
.ya3{bottom:589.693333pt;}
.y64{bottom:590.013333pt;}
.y132{bottom:590.333333pt;}
.yf6{bottom:591.773333pt;}
.y171{bottom:600.893333pt;}
.ya2{bottom:602.013333pt;}
.y131{bottom:603.293333pt;}
.yf5{bottom:604.093333pt;}
.y63{bottom:605.373333pt;}
.ya1{bottom:612.733333pt;}
.y170{bottom:613.213333pt;}
.yf4{bottom:616.413333pt;}
.y130{bottom:618.653333pt;}
.y62{bottom:620.573333pt;}
.ya0{bottom:624.893333pt;}
.y16f{bottom:625.533333pt;}
.yf3{bottom:628.573333pt;}
.y12f{bottom:634.013333pt;}
.y61{bottom:635.933333pt;}
.y9f{bottom:637.213333pt;}
.y16e{bottom:637.693333pt;}
.yf2{bottom:640.893333pt;}
.y12e{bottom:648.733333pt;}
.y9e{bottom:649.533333pt;}
.y16d{bottom:650.013333pt;}
.y60{bottom:651.293333pt;}
.yf1{bottom:653.213333pt;}
.y12d{bottom:660.893333pt;}
.y9d{bottom:661.693333pt;}
.y16c{bottom:662.333333pt;}
.yf0{bottom:665.373333pt;}
.y5f{bottom:666.653333pt;}
.y12c{bottom:673.853333pt;}
.y9c{bottom:674.013333pt;}
.y16b{bottom:674.493333pt;}
.y14{bottom:676.893333pt;}
.yef{bottom:677.693333pt;}
.y5e{bottom:682.013333pt;}
.y9b{bottom:686.333333pt;}
.y16a{bottom:686.813333pt;}
.y12b{bottom:689.213333pt;}
.yee{bottom:690.013333pt;}
.y5d{bottom:697.373333pt;}
.y9a{bottom:698.493333pt;}
.y169{bottom:699.133333pt;}
.yed{bottom:702.173333pt;}
.y12a{bottom:703.933333pt;}
.y99{bottom:710.813333pt;}
.y168{bottom:711.293333pt;}
.y5c{bottom:712.573333pt;}
.yec{bottom:714.493333pt;}
.y129{bottom:716.093333pt;}
.y98{bottom:723.133333pt;}
.y167{bottom:723.613333pt;}
.y1a0{bottom:724.253333pt;}
.y125{bottom:726.173333pt;}
.yeb{bottom:726.813333pt;}
.y5b{bottom:727.933333pt;}
.y97{bottom:735.293333pt;}
.y166{bottom:735.773333pt;}
.y197{bottom:738.013333pt;}
.yea{bottom:738.973333pt;}
.y5a{bottom:743.293333pt;}
.y96{bottom:747.613333pt;}
.y165{bottom:748.093333pt;}
.ye9{bottom:751.293333pt;}
.y59{bottom:758.653333pt;}
.y95{bottom:759.933333pt;}
.y164{bottom:760.413333pt;}
.ye8{bottom:763.613333pt;}
.y12{bottom:770.333333pt;}
.y94{bottom:772.093333pt;}
.y163{bottom:772.573333pt;}
.y58{bottom:774.013333pt;}
.ye7{bottom:775.773333pt;}
.y93{bottom:784.413333pt;}
.y162{bottom:784.893333pt;}
.ye6{bottom:788.093333pt;}
.y57{bottom:789.213333pt;}
.y92{bottom:796.773333pt;}
.y161{bottom:797.253333pt;}
.y11{bottom:798.533333pt;}
.ye5{bottom:800.453333pt;}
.y56{bottom:804.613333pt;}
.y124{bottom:805.093333pt;}
.y160{bottom:809.413333pt;}
.y90{bottom:809.573333pt;}
.ye4{bottom:812.613333pt;}
.y10{bottom:813.893333pt;}
.y123{bottom:815.813333pt;}
.y55{bottom:819.973333pt;}
.y15f{bottom:821.733333pt;}
.ye3{bottom:824.933333pt;}
.y122{bottom:831.173333pt;}
.yf{bottom:832.613333pt;}
.y15e{bottom:834.053333pt;}
.y54{bottom:835.333333pt;}
.ye2{bottom:837.253333pt;}
.y8f{bottom:840.133333pt;}
.ye{bottom:844.773333pt;}
.y15d{bottom:846.213333pt;}
.y120{bottom:846.373333pt;}
.ye1{bottom:849.413333pt;}
.y53{bottom:850.693333pt;}
.y8e{bottom:852.453333pt;}
.yd{bottom:857.093333pt;}
.y15c{bottom:858.533333pt;}
.ye0{bottom:861.733333pt;}
.y8d{bottom:865.253333pt;}
.y52{bottom:866.053333pt;}
.yc{bottom:869.413333pt;}
.y196{bottom:870.373333pt;}
.y15b{bottom:870.853333pt;}
.ydb{bottom:875.013333pt;}
.y11f{bottom:877.093333pt;}
.yb{bottom:878.213333pt;}
.y8c{bottom:880.613333pt;}
.y51{bottom:881.253333pt;}
.y15a{bottom:883.013333pt;}
.y18f{bottom:884.133333pt;}
.y11e{bottom:892.453333pt;}
.ya{bottom:893.573333pt;}
.y159{bottom:895.333333pt;}
.y8b{bottom:895.973333pt;}
.y50{bottom:896.613333pt;}
.yda{bottom:901.573333pt;}
.y158{bottom:907.653333pt;}
.y11c{bottom:907.813333pt;}
.y9{bottom:908.933333pt;}
.y8a{bottom:911.333333pt;}
.y4f{bottom:911.973333pt;}
.yd9{bottom:917.413333pt;}
.y157{bottom:919.813333pt;}
.y11a{bottom:923.173333pt;}
.y8{bottom:924.293333pt;}
.y89{bottom:926.693333pt;}
.y4e{bottom:927.333333pt;}
.y156{bottom:932.133333pt;}
.yd8{bottom:932.773333pt;}
.y119{bottom:939.173333pt;}
.y7{bottom:941.413333pt;}
.y88{bottom:942.053333pt;}
.y4d{bottom:942.693333pt;}
.y155{bottom:944.453333pt;}
.yd7{bottom:947.493333pt;}
.y154{bottom:956.613333pt;}
.y87{bottom:957.253333pt;}
.y4c{bottom:958.053333pt;}
.yd6{bottom:959.813333pt;}
.y6{bottom:965.893333pt;}
.y153{bottom:968.933333pt;}
.y86{bottom:972.613333pt;}
.y4b{bottom:973.253333pt;}
.y152{bottom:981.253333pt;}
.y85{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y151{bottom:993.413333pt;}
.y84{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y150{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y4a{bottom:1031.680000pt;}
.y83{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h2e{height:5.025000pt;}
.h18{height:12.160000pt;}
.h17{height:12.320000pt;}
.h19{height:12.352000pt;}
.h20{height:12.640000pt;}
.h28{height:13.760000pt;}
.h2c{height:13.920000pt;}
.h15{height:15.200000pt;}
.h14{height:15.360000pt;}
.h8{height:23.232000pt;}
.h6{height:26.381250pt;}
.h1d{height:26.560000pt;}
.h22{height:30.720000pt;}
.h21{height:31.008437pt;}
.he{height:34.710938pt;}
.h7{height:36.134375pt;}
.h1e{height:36.138125pt;}
.h1b{height:38.413438pt;}
.h24{height:42.063437pt;}
.h16{height:42.084375pt;}
.h1c{height:42.381250pt;}
.h1a{height:43.215000pt;}
.h11{height:47.085938pt;}
.hd{height:47.109375pt;}
.h26{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h13{height:55.298750pt;}
.h9{height:62.812500pt;}
.h1f{height:70.884375pt;}
.h23{height:76.672000pt;}
.h10{height:77.760000pt;}
.h5{height:85.785000pt;}
.ha{height:92.640000pt;}
.h12{height:116.032000pt;}
.h27{height:132.320000pt;}
.h29{height:132.352000pt;}
.h2a{height:136.000000pt;}
.h2b{height:136.026667pt;}
.h2d{height:152.640000pt;}
.h25{height:207.866667pt;}
.hf{height:282.906667pt;}
.hc{height:297.786667pt;}
.hb{height:376.186667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w19{width:24.800000pt;}
.w14{width:24.960000pt;}
.w1a{width:24.992000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w15{width:26.880000pt;}
.w1b{width:27.680000pt;}
.w16{width:28.640000pt;}
.w18{width:29.280000pt;}
.w1c{width:29.920000pt;}
.w17{width:30.752000pt;}
.w10{width:51.040000pt;}
.w12{width:55.200000pt;}
.wb{width:66.880000pt;}
.wd{width:70.272000pt;}
.wa{width:78.080000pt;}
.we{width:90.720000pt;}
.wf{width:90.752000pt;}
.w20{width:112.640000pt;}
.w11{width:163.386667pt;}
.w1f{width:176.506667pt;}
.w9{width:178.946667pt;}
.w3{width:185.786667pt;}
.w1d{width:190.906667pt;}
.w13{width:206.586667pt;}
.w1e{width:217.146667pt;}
.wc{width:218.586667pt;}
.w5{width:385.026667pt;}
.w21{width:487.613333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.xe{left:9.440000pt;}
.x31{left:10.720000pt;}
.x1e{left:12.480000pt;}
.x32{left:13.440000pt;}
.x29{left:15.200000pt;}
.x1c{left:16.520000pt;}
.x30{left:18.080000pt;}
.x1d{left:19.520000pt;}
.x33{left:20.800000pt;}
.x2a{left:22.720000pt;}
.x25{left:25.600000pt;}
.x2b{left:27.520000pt;}
.x23{left:28.480000pt;}
.x1b{left:33.440000pt;}
.x2c{left:35.040000pt;}
.x2e{left:37.760000pt;}
.x1a{left:39.040000pt;}
.x2d{left:45.440000pt;}
.x2f{left:52.960000pt;}
.x4a{left:56.314667pt;}
.x27{left:61.760000pt;}
.x17{left:69.000000pt;}
.x20{left:82.560000pt;}
.x10{left:94.720000pt;}
.x48{left:101.594667pt;}
.x49{left:103.514667pt;}
.x46{left:106.272000pt;}
.xb{left:111.552000pt;}
.x1{left:113.471988pt;}
.x34{left:114.592000pt;}
.x2{left:116.351988pt;}
.x1f{left:117.631988pt;}
.x7{left:121.791988pt;}
.x13{left:137.466655pt;}
.x9{left:139.226655pt;}
.x45{left:141.946655pt;}
.x5{left:146.426655pt;}
.x12{left:161.466655pt;}
.xa{left:172.826655pt;}
.x6{left:191.386655pt;}
.x14{left:207.386655pt;}
.x47{left:218.906667pt;}
.x8{left:228.186655pt;}
.x16{left:244.506667pt;}
.x3{left:251.426655pt;}
.xd{left:297.346667pt;}
.x43{left:305.026667pt;}
.x28{left:309.026667pt;}
.xf{left:316.226667pt;}
.x35{left:321.186667pt;}
.x36{left:346.146667pt;}
.x21{left:364.226667pt;}
.x37{left:373.026667pt;}
.x11{left:377.826667pt;}
.x38{left:401.666667pt;}
.x4{left:406.466655pt;}
.x18{left:423.453333pt;}
.x39{left:432.413333pt;}
.x22{left:434.493333pt;}
.x3a{left:461.693333pt;}
.x3b{left:486.493333pt;}
.x19{left:501.533333pt;}
.x3c{left:511.453333pt;}
.x44{left:522.173333pt;}
.x24{left:525.373333pt;}
.x3d{left:536.413333pt;}
.x3e{left:561.373333pt;}
.x3f{left:586.373333pt;}
.x40{left:614.053333pt;}
.x26{left:616.133333pt;}
.x41{left:643.333333pt;}
.x42{left:668.293333pt;}
.x15{left:672.773333pt;}
}




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