
    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_4df64d04b44e0c27d58f18e3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_294c50ad57ac2aed4ebda4b8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_76e0eac69d4b268807bf40a8.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_23126bbef37bec482665a66b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a2e1ec4fa8e3a742796d702c.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_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_175de0e53857b572b8ecc155.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4d0509e7578fa2acdb159cfd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1ca1dc5432a1fe4128cf348c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.084961;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;}
.m3{transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240385,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243902,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244680,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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v2{vertical-align:12.240000px;}
.v1{vertical-align:23.760000px;}
.ls21{letter-spacing:-1.494000px;}
.ls28{letter-spacing:-1.386000px;}
.ls27{letter-spacing:-1.080000px;}
.ls17{letter-spacing:-0.978000px;}
.lsc{letter-spacing:-0.774000px;}
.ls5{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls2b{letter-spacing:0.153600px;}
.ls3{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.lsb{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.666000px;}
.ls1f{letter-spacing:0.900000px;}
.ls29{letter-spacing:1.620000px;}
.ls2d{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.340000px;}
.ls23{letter-spacing:3.060000px;}
.ls25{letter-spacing:8.820000px;}
.ls26{letter-spacing:11.700000px;}
.ls2a{letter-spacing:16.506720px;}
.ls2e{letter-spacing:23.940000px;}
.ls2c{letter-spacing:24.660000px;}
.ls18{letter-spacing:25.866720px;}
.ls14{letter-spacing:26.586720px;}
.ls15{letter-spacing:27.306720px;}
.ls10{letter-spacing:28.026720px;}
.ls1e{letter-spacing:33.786720px;}
.ls22{letter-spacing:36.666720px;}
.ls16{letter-spacing:38.826720px;}
.ls11{letter-spacing:46.026720px;}
.lsf{letter-spacing:64.026720px;}
.ls1a{letter-spacing:286.020000px;}
.ls1c{letter-spacing:287.460000px;}
.ls19{letter-spacing:312.840000px;}
.ls1b{letter-spacing:438.840000px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws4{word-spacing:-23.958720px;}
.ws3{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws14{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.146400px;}
.ws1a{word-spacing:-15.093600px;}
.ws7{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.wsa{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws16{word-spacing:-14.680200px;}
.wse{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.479800px;}
.ws9{word-spacing:-14.328000px;}
.ws13{word-spacing:-14.274000px;}
.wsd{word-spacing:-14.166000px;}
.ws15{word-spacing:-13.962000px;}
.ws18{word-spacing:-13.860000px;}
.ws19{word-spacing:-13.554000px;}
.ws17{word-spacing:-13.446000px;}
.ws1{word-spacing:-10.440000px;}
.ws10{word-spacing:0.000000px;}
._2d{margin-left:-12.384720px;}
._32{margin-left:-9.216480px;}
._24{margin-left:-6.077040px;}
._1b{margin-left:-4.854240px;}
._19{margin-left:-3.838320px;}
._11{margin-left:-2.611920px;}
._0{margin-left:-1.080000px;}
._12{width:1.176240px;}
._1{width:2.220000px;}
._17{width:3.564960px;}
._15{width:4.653600px;}
._18{width:5.922480px;}
._14{width:7.051680px;}
._13{width:8.127360px;}
._16{width:9.398880px;}
._6{width:10.800000px;}
._1a{width:12.509280px;}
._29{width:13.843920px;}
._28{width:17.340480px;}
._f{width:18.948000px;}
._26{width:20.920800px;}
._36{width:24.047760px;}
._35{width:25.146480px;}
._2f{width:26.799840px;}
._25{width:27.812400px;}
._27{width:30.330240px;}
._37{width:31.613040px;}
._38{width:32.808240px;}
._30{width:34.050480px;}
._33{width:38.393280px;}
._2e{width:42.573360px;}
._23{width:54.203760px;}
._31{width:58.293360px;}
._2a{width:69.913200px;}
._2b{width:71.018400px;}
._2c{width:72.868320px;}
._7{width:76.284960px;}
._34{width:77.438640px;}
._1c{width:96.011760px;}
._10{width:99.660000px;}
._1d{width:115.573680px;}
._1f{width:140.713200px;}
._1e{width:142.086720px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._2{width:255.512640px;}
._21{width:288.685200px;}
._3{width:357.300000px;}
._4{width:388.054560px;}
._20{width:400.405200px;}
._5{width:436.440000px;}
._22{width:440.065200px;}
._9{width:604.364160px;}
._d{width:637.320000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yf{bottom:5.760000px;}
.y176{bottom:5.940000px;}
.y11b{bottom:6.660000px;}
.y10c{bottom:7.020000px;}
.y111{bottom:7.380000px;}
.y110{bottom:8.100000px;}
.y168{bottom:8.460000px;}
.y173{bottom:8.640000px;}
.y11a{bottom:8.820000px;}
.y10f{bottom:9.540000px;}
.y107{bottom:9.900000px;}
.y10a{bottom:10.485000px;}
.y6{bottom:12.420000px;}
.y106{bottom:12.960000px;}
.y17a{bottom:13.140000px;}
.y109{bottom:15.705000px;}
.y8{bottom:18.180000px;}
.y115{bottom:20.340000px;}
.y117{bottom:23.400000px;}
.y116{bottom:24.120000px;}
.y114{bottom:25.560000px;}
.y16b{bottom:25.740000px;}
.y10b{bottom:26.820000px;}
.y172{bottom:28.620000px;}
.y119{bottom:28.800000px;}
.y10e{bottom:29.340000px;}
.y179{bottom:32.940000px;}
.yd{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y113{bottom:45.360000px;}
.y171{bottom:48.420000px;}
.yc{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.ye{bottom:75.960000px;}
.yb{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y8d{bottom:101.340000px;}
.yba{bottom:102.240000px;}
.yd7{bottom:104.580000px;}
.y15f{bottom:106.740000px;}
.y6b{bottom:107.100000px;}
.y3c{bottom:109.440000px;}
.y178{bottom:110.160000px;}
.y199{bottom:110.340000px;}
.y1ab{bottom:111.240000px;}
.y1a8{bottom:113.580000px;}
.y11f{bottom:115.020000px;}
.yf3{bottom:118.800000px;}
.y135{bottom:121.140000px;}
.yb9{bottom:122.040000px;}
.y8c{bottom:122.220000px;}
.yd6{bottom:124.380000px;}
.y2{bottom:125.670000px;}
.y15e{bottom:126.540000px;}
.y6a{bottom:126.900000px;}
.y3b{bottom:129.240000px;}
.y198{bottom:130.140000px;}
.y1aa{bottom:131.220000px;}
.y1a7{bottom:133.380000px;}
.y11e{bottom:134.820000px;}
.yf2{bottom:138.600000px;}
.y134{bottom:140.940000px;}
.y8b{bottom:142.020000px;}
.yd5{bottom:144.180000px;}
.y15d{bottom:146.520000px;}
.y69{bottom:146.700000px;}
.y3a{bottom:149.040000px;}
.y197{bottom:150.120000px;}
.y1a9{bottom:150.840000px;}
.y1a6{bottom:153.210000px;}
.y11d{bottom:154.830000px;}
.y133{bottom:160.770000px;}
.ya5{bottom:161.490000px;}
.y177{bottom:161.670000px;}
.y8a{bottom:161.850000px;}
.y15c{bottom:166.350000px;}
.y68{bottom:166.710000px;}
.y39{bottom:169.050000px;}
.yd4{bottom:173.010000px;}
.y11c{bottom:174.630000px;}
.y196{bottom:178.950000px;}
.y132{bottom:180.750000px;}
.ya4{bottom:181.290000px;}
.y89{bottom:181.650000px;}
.y15b{bottom:186.150000px;}
.y67{bottom:186.510000px;}
.y38{bottom:188.850000px;}
.yd3{bottom:192.810000px;}
.y1a5{bottom:192.990000px;}
.y118{bottom:193.170000px;}
.y195{bottom:198.750000px;}
.ya3{bottom:201.090000px;}
.y88{bottom:201.630000px;}
.y175{bottom:205.770000px;}
.y15a{bottom:205.950000px;}
.y66{bottom:206.310000px;}
.y37{bottom:208.650000px;}
.yd2{bottom:212.790000px;}
.y194{bottom:218.550000px;}
.y87{bottom:221.430000px;}
.ya2{bottom:221.970000px;}
.y159{bottom:225.750000px;}
.y65{bottom:226.110000px;}
.y36{bottom:228.450000px;}
.yd1{bottom:232.590000px;}
.y193{bottom:238.350000px;}
.y112{bottom:240.510000px;}
.y131{bottom:241.230000px;}
.ya1{bottom:242.850000px;}
.y158{bottom:245.730000px;}
.y64{bottom:245.910000px;}
.y35{bottom:248.250000px;}
.y174{bottom:250.050000px;}
.yf1{bottom:250.950000px;}
.yd0{bottom:252.390000px;}
.y192{bottom:258.330000px;}
.y130{bottom:261.030000px;}
.ya0{bottom:263.910000px;}
.y157{bottom:265.530000px;}
.y63{bottom:265.890000px;}
.y34{bottom:268.230000px;}
.yf0{bottom:270.750000px;}
.y1a4{bottom:272.190000px;}
.y191{bottom:278.130000px;}
.y9f{bottom:284.790000px;}
.y156{bottom:285.330000px;}
.y62{bottom:285.690000px;}
.y33{bottom:288.030000px;}
.y12f{bottom:290.010000px;}
.yef{bottom:290.550000px;}
.y1a3{bottom:292.170000px;}
.y170{bottom:294.150000px;}
.y190{bottom:297.930000px;}
.y10d{bottom:304.410000px;}
.y9e{bottom:304.590000px;}
.y61{bottom:305.490000px;}
.y155{bottom:306.210000px;}
.y32{bottom:307.830000px;}
.y12e{bottom:309.810000px;}
.yee{bottom:310.350000px;}
.yb8{bottom:310.530000px;}
.y1a2{bottom:311.970000px;}
.y18f{bottom:318.810000px;}
.y9d{bottom:324.390000px;}
.y60{bottom:325.290000px;}
.y154{bottom:327.090000px;}
.y31{bottom:327.630000px;}
.y12d{bottom:329.610000px;}
.yb7{bottom:331.410000px;}
.y1a1{bottom:331.770000px;}
.y18e{bottom:338.610000px;}
.y9c{bottom:344.190000px;}
.y5f{bottom:345.090000px;}
.y30{bottom:347.430000px;}
.y153{bottom:348.150000px;}
.y12c{bottom:349.410000px;}
.yed{bottom:351.210000px;}
.y1a0{bottom:351.570000px;}
.yb6{bottom:352.290000px;}
.y18d{bottom:358.590000px;}
.y16f{bottom:361.110000px;}
.y9b{bottom:364.170000px;}
.y5e{bottom:365.070000px;}
.y2f{bottom:367.410000px;}
.yec{bottom:367.770000px;}
.y152{bottom:367.950000px;}
.y12b{bottom:370.290000px;}
.y19f{bottom:371.370000px;}
.yb5{bottom:373.350000px;}
.y18c{bottom:379.470000px;}
.y9a{bottom:383.970000px;}
.y5d{bottom:385.950000px;}
.y2e{bottom:387.210000px;}
.y151{bottom:387.750000px;}
.y12a{bottom:390.270000px;}
.y19e{bottom:391.350000px;}
.yb4{bottom:393.150000px;}
.y108{bottom:397.650000px;}
.y18b{bottom:399.270000px;}
.y16e{bottom:405.255000px;}
.y5c{bottom:405.795000px;}
.y2d{bottom:407.055000px;}
.y150{bottom:407.595000px;}
.y129{bottom:410.115000px;}
.y19d{bottom:411.195000px;}
.y86{bottom:412.275000px;}
.yb3{bottom:412.995000px;}
.y18a{bottom:420.195000px;}
.ycf{bottom:420.375000px;}
.y5b{bottom:426.675000px;}
.y2c{bottom:426.855000px;}
.y14f{bottom:427.395000px;}
.y128{bottom:429.915000px;}
.y19c{bottom:430.995000px;}
.y105{bottom:431.895000px;}
.y16d{bottom:432.255000px;}
.yb2{bottom:432.795000px;}
.y85{bottom:433.335000px;}
.y189{bottom:439.995000px;}
.yce{bottom:440.175000px;}
.y5a{bottom:446.475000px;}
.y2b{bottom:446.655000px;}
.y14e{bottom:447.195000px;}
.y127{bottom:449.715000px;}
.y19b{bottom:450.795000px;}
.yb1{bottom:452.595000px;}
.y84{bottom:454.215000px;}
.y16c{bottom:459.255000px;}
.ycd{bottom:459.975000px;}
.y59{bottom:466.275000px;}
.y2a{bottom:466.635000px;}
.y14d{bottom:467.175000px;}
.y104{bottom:469.155000px;}
.y126{bottom:469.515000px;}
.y19a{bottom:470.595000px;}
.yb0{bottom:472.575000px;}
.y83{bottom:475.095000px;}
.ycc{bottom:479.775000px;}
.y188{bottom:480.855000px;}
.yeb{bottom:486.075000px;}
.y16a{bottom:486.255000px;}
.y29{bottom:486.435000px;}
.y14c{bottom:486.975000px;}
.y58{bottom:487.335000px;}
.y103{bottom:488.955000px;}
.y125{bottom:490.575000px;}
.y82{bottom:495.975000px;}
.y187{bottom:500.655000px;}
.ycb{bottom:500.835000px;}
.yea{bottom:506.055000px;}
.y28{bottom:506.235000px;}
.y14b{bottom:506.775000px;}
.y57{bottom:507.135000px;}
.y102{bottom:508.755000px;}
.y124{bottom:510.375000px;}
.y81{bottom:515.775000px;}
.y186{bottom:520.455000px;}
.yca{bottom:521.715000px;}
.ye9{bottom:525.855000px;}
.y27{bottom:526.035000px;}
.y14a{bottom:526.575000px;}
.y56{bottom:528.015000px;}
.y101{bottom:528.555000px;}
.y123{bottom:530.175000px;}
.y169{bottom:530.535000px;}
.y80{bottom:535.755000px;}
.y185{bottom:541.335000px;}
.yc9{bottom:542.595000px;}
.y26{bottom:545.835000px;}
.y149{bottom:546.375000px;}
.ye8{bottom:546.735000px;}
.y55{bottom:547.815000px;}
.y100{bottom:548.535000px;}
.y122{bottom:549.975000px;}
.y167{bottom:557.535000px;}
.y184{bottom:561.315000px;}
.yc8{bottom:563.475000px;}
.y7f{bottom:564.555000px;}
.y25{bottom:565.815000px;}
.y148{bottom:566.355000px;}
.ye7{bottom:566.535000px;}
.yff{bottom:568.335000px;}
.y54{bottom:568.695000px;}
.y121{bottom:569.775000px;}
.y183{bottom:582.195000px;}
.ye6{bottom:583.095000px;}
.yc7{bottom:583.275000px;}
.y7e{bottom:584.355000px;}
.y24{bottom:585.615000px;}
.y147{bottom:586.155000px;}
.yfe{bottom:588.135000px;}
.y53{bottom:588.675000px;}
.y120{bottom:589.755000px;}
.y166{bottom:590.295000px;}
.y99{bottom:598.935000px;}
.y182{bottom:601.995000px;}
.yc6{bottom:603.075000px;}
.y7d{bottom:604.155000px;}
.y23{bottom:605.415000px;}
.y146{bottom:605.955000px;}
.yfd{bottom:609.015000px;}
.y52{bottom:609.555000px;}
.y98{bottom:618.915000px;}
.y165{bottom:619.095000px;}
.y181{bottom:621.795000px;}
.yc5{bottom:623.055000px;}
.y22{bottom:625.215000px;}
.y145{bottom:626.835000px;}
.yfc{bottom:628.815000px;}
.y51{bottom:629.355000px;}
.y7c{bottom:632.955000px;}
.y164{bottom:638.895000px;}
.y97{bottom:639.795000px;}
.y180{bottom:642.675000px;}
.yc4{bottom:642.855000px;}
.y21{bottom:645.015000px;}
.y144{bottom:646.635000px;}
.y50{bottom:649.185000px;}
.yfb{bottom:649.725000px;}
.y7b{bottom:652.965000px;}
.y163{bottom:658.725000px;}
.y96{bottom:660.705000px;}
.yc3{bottom:662.685000px;}
.y20{bottom:665.025000px;}
.y143{bottom:666.645000px;}
.y4f{bottom:668.985000px;}
.yfa{bottom:669.705000px;}
.y7a{bottom:672.765000px;}
.y162{bottom:678.705000px;}
.y95{bottom:681.585000px;}
.yc2{bottom:682.485000px;}
.ye5{bottom:683.565000px;}
.y1f{bottom:684.825000px;}
.y142{bottom:686.445000px;}
.y4e{bottom:688.965000px;}
.yaf{bottom:690.585000px;}
.y79{bottom:692.565000px;}
.y161{bottom:698.505000px;}
.yc1{bottom:702.285000px;}
.ye4{bottom:703.365000px;}
.y1e{bottom:704.625000px;}
.y141{bottom:706.245000px;}
.y4d{bottom:708.765000px;}
.y94{bottom:710.385000px;}
.yae{bottom:711.465000px;}
.y78{bottom:712.365000px;}
.y160{bottom:718.305000px;}
.yc0{bottom:722.265000px;}
.ye3{bottom:723.165000px;}
.y1d{bottom:724.425000px;}
.y140{bottom:727.125000px;}
.y4c{bottom:728.565000px;}
.y93{bottom:730.365000px;}
.yf9{bottom:731.265000px;}
.yad{bottom:732.345000px;}
.y77{bottom:741.165000px;}
.ybf{bottom:742.065000px;}
.y17f{bottom:742.965000px;}
.ye2{bottom:744.045000px;}
.y1c{bottom:744.225000px;}
.y13f{bottom:746.925000px;}
.y4b{bottom:748.365000px;}
.y92{bottom:750.165000px;}
.yf8{bottom:751.065000px;}
.yac{bottom:753.405000px;}
.y76{bottom:761.145000px;}
.ye1{bottom:763.845000px;}
.y1b{bottom:764.205000px;}
.y4a{bottom:768.165000px;}
.y91{bottom:769.965000px;}
.yf7{bottom:772.125000px;}
.yab{bottom:773.205000px;}
.y13e{bottom:775.905000px;}
.y75{bottom:780.945000px;}
.ye0{bottom:783.825000px;}
.y1a{bottom:784.005000px;}
.y49{bottom:788.145000px;}
.y90{bottom:789.765000px;}
.yf6{bottom:791.925000px;}
.yaa{bottom:793.005000px;}
.y13d{bottom:795.705000px;}
.y74{bottom:800.745000px;}
.ydf{bottom:803.625000px;}
.y19{bottom:803.805000px;}
.y48{bottom:807.945000px;}
.yf5{bottom:811.725000px;}
.ya9{bottom:812.805000px;}
.y13c{bottom:815.505000px;}
.y73{bottom:820.545000px;}
.yde{bottom:823.425000px;}
.y18{bottom:823.605000px;}
.y17e{bottom:824.505000px;}
.y47{bottom:827.745000px;}
.yf4{bottom:831.525000px;}
.ya8{bottom:832.605000px;}
.y13b{bottom:836.385000px;}
.ydd{bottom:843.225000px;}
.y17{bottom:843.405000px;}
.y17d{bottom:844.305000px;}
.y46{bottom:847.545000px;}
.y72{bottom:849.345000px;}
.ya7{bottom:852.585000px;}
.y13a{bottom:856.185000px;}
.y16{bottom:863.385000px;}
.ydc{bottom:864.105000px;}
.y17c{bottom:865.185000px;}
.y45{bottom:867.345000px;}
.ya6{bottom:869.145000px;}
.y71{bottom:869.325000px;}
.y15{bottom:883.185000px;}
.ydb{bottom:884.085000px;}
.y139{bottom:885.165000px;}
.y44{bottom:887.325000px;}
.y70{bottom:889.125000px;}
.y14{bottom:903.030000px;}
.yda{bottom:903.930000px;}
.y138{bottom:905.010000px;}
.y43{bottom:907.170000px;}
.y6f{bottom:917.970000px;}
.y13{bottom:923.370000px;}
.ybe{bottom:923.730000px;}
.yd9{bottom:924.810000px;}
.y17b{bottom:925.890000px;}
.y42{bottom:926.970000px;}
.y6e{bottom:937.770000px;}
.ybd{bottom:943.530000px;}
.y12{bottom:944.610000px;}
.y137{bottom:945.690000px;}
.y41{bottom:946.770000px;}
.y6d{bottom:957.570000px;}
.ybc{bottom:964.410000px;}
.y136{bottom:965.490000px;}
.y40{bottom:966.570000px;}
.y11{bottom:968.190000px;}
.y6c{bottom:977.550000px;}
.ybb{bottom:985.470000px;}
.y3f{bottom:986.550000px;}
.y10{bottom:999.870000px;}
.y8f{bottom:1004.190000px;}
.yd8{bottom:1005.270000px;}
.y3e{bottom:1006.350000px;}
.y8e{bottom:1025.070000px;}
.y3d{bottom:1026.150000px;}
.ya{bottom:1040.370000px;}
.y9{bottom:1045.770000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.521406px;}
.hb{height:21.240000px;}
.h1c{height:22.500000px;}
.h10{height:27.000000px;}
.h12{height:29.736000px;}
.h16{height:30.402422px;}
.h15{height:30.912187px;}
.h8{height:33.480000px;}
.h18{height:35.120039px;}
.h17{height:35.708906px;}
.h20{height:39.600000px;}
.h1e{height:39.636000px;}
.h1d{height:39.780000px;}
.h14{height:40.860000px;}
.he{height:42.164648px;}
.h1b{height:42.840000px;}
.h19{height:43.380000px;}
.h4{height:46.736719px;}
.h21{height:47.016000px;}
.h22{height:48.496641px;}
.hf{height:49.255313px;}
.h5{height:52.319180px;}
.h11{height:54.404648px;}
.ha{height:57.992344px;}
.h1a{height:59.400000px;}
.h1f{height:62.460000px;}
.h3{height:63.500977px;}
.h13{height:64.559180px;}
.h9{height:65.884219px;}
.hd{height:67.565039px;}
.hc{height:83.836758px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.wa{width:84.816000px;}
.w7{width:127.296000px;}
.w3{width:130.716000px;}
.wb{width:155.370000px;}
.w6{width:162.750000px;}
.w9{width:166.890000px;}
.w8{width:244.470000px;}
.wc{width:297.435000px;}
.wd{width:307.155000px;}
.w2{width:649.410000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x1f{left:-80.280000px;}
.x20{left:-71.460000px;}
.x1d{left:-66.240000px;}
.x1e{left:-58.500000px;}
.x21{left:-8.820000px;}
.x22{left:-1.080000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:53.999987px;}
.x1{left:56.520000px;}
.x23{left:63.180000px;}
.xc{left:80.999987px;}
.x25{left:108.035987px;}
.x4{left:118.290000px;}
.xa{left:133.775987px;}
.x1a{left:222.870000px;}
.x15{left:259.769987px;}
.x11{left:263.009987px;}
.x12{left:266.834987px;}
.xf{left:293.654987px;}
.x7{left:305.714987px;}
.xd{left:320.474987px;}
.x13{left:326.234987px;}
.xe{left:328.934987px;}
.x19{left:334.334987px;}
.x18{left:337.034987px;}
.x14{left:346.214987px;}
.x1b{left:350.175000px;}
.xb{left:369.614987px;}
.x9{left:379.694987px;}
.x8{left:446.504987px;}
.x16{left:500.504987px;}
.x17{left:518.504987px;}
.x24{left:520.485000px;}
.x10{left:595.004987px;}
.x3{left:705.930000px;}
.x1c{left:761.550000px;}
.x6{left:829.260000px;}
@media print{
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v2{vertical-align:10.880000pt;}
.v1{vertical-align:21.120000pt;}
.ls21{letter-spacing:-1.328000pt;}
.ls28{letter-spacing:-1.232000pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls17{letter-spacing:-0.869333pt;}
.lsc{letter-spacing:-0.688000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls2b{letter-spacing:0.136533pt;}
.ls3{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.lsb{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.592000pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls29{letter-spacing:1.440000pt;}
.ls2d{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.720000pt;}
.ls25{letter-spacing:7.840000pt;}
.ls26{letter-spacing:10.400000pt;}
.ls2a{letter-spacing:14.672640pt;}
.ls2e{letter-spacing:21.280000pt;}
.ls2c{letter-spacing:21.920000pt;}
.ls18{letter-spacing:22.992640pt;}
.ls14{letter-spacing:23.632640pt;}
.ls15{letter-spacing:24.272640pt;}
.ls10{letter-spacing:24.912640pt;}
.ls1e{letter-spacing:30.032640pt;}
.ls22{letter-spacing:32.592640pt;}
.ls16{letter-spacing:34.512640pt;}
.ls11{letter-spacing:40.912640pt;}
.lsf{letter-spacing:56.912640pt;}
.ls1a{letter-spacing:254.240000pt;}
.ls1c{letter-spacing:255.520000pt;}
.ls19{letter-spacing:278.080000pt;}
.ls1b{letter-spacing:390.080000pt;}
.ws12{word-spacing:-53.120000pt;}
.ws4{word-spacing:-21.296640pt;}
.ws3{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws14{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.463467pt;}
.ws1a{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.wsa{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws16{word-spacing:-13.049067pt;}
.wse{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.870933pt;}
.ws9{word-spacing:-12.736000pt;}
.ws13{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.592000pt;}
.ws15{word-spacing:-12.410667pt;}
.ws18{word-spacing:-12.320000pt;}
.ws19{word-spacing:-12.048000pt;}
.ws17{word-spacing:-11.952000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws10{word-spacing:0.000000pt;}
._2d{margin-left:-11.008640pt;}
._32{margin-left:-8.192427pt;}
._24{margin-left:-5.401813pt;}
._1b{margin-left:-4.314880pt;}
._19{margin-left:-3.411840pt;}
._11{margin-left:-2.321707pt;}
._0{margin-left:-0.960000pt;}
._12{width:1.045547pt;}
._1{width:1.973333pt;}
._17{width:3.168853pt;}
._15{width:4.136533pt;}
._18{width:5.264427pt;}
._14{width:6.268160pt;}
._13{width:7.224320pt;}
._16{width:8.354560pt;}
._6{width:9.600000pt;}
._1a{width:11.119360pt;}
._29{width:12.305707pt;}
._28{width:15.413760pt;}
._f{width:16.842667pt;}
._26{width:18.596267pt;}
._36{width:21.375787pt;}
._35{width:22.352427pt;}
._2f{width:23.822080pt;}
._25{width:24.722133pt;}
._27{width:26.960213pt;}
._37{width:28.100480pt;}
._38{width:29.162880pt;}
._30{width:30.267093pt;}
._33{width:34.127360pt;}
._2e{width:37.842987pt;}
._23{width:48.181120pt;}
._31{width:51.816320pt;}
._2a{width:62.145067pt;}
._2b{width:63.127467pt;}
._2c{width:64.771840pt;}
._7{width:67.808853pt;}
._34{width:68.834347pt;}
._1c{width:85.343787pt;}
._10{width:88.586667pt;}
._1d{width:102.732160pt;}
._1f{width:125.078400pt;}
._1e{width:126.299307pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._2{width:227.122347pt;}
._21{width:256.609067pt;}
._3{width:317.600000pt;}
._4{width:344.937387pt;}
._20{width:355.915733pt;}
._5{width:387.946667pt;}
._22{width:391.169067pt;}
._9{width:537.212587pt;}
._d{width:566.506667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:5.120000pt;}
.y176{bottom:5.280000pt;}
.y11b{bottom:5.920000pt;}
.y10c{bottom:6.240000pt;}
.y111{bottom:6.560000pt;}
.y110{bottom:7.200000pt;}
.y168{bottom:7.520000pt;}
.y173{bottom:7.680000pt;}
.y11a{bottom:7.840000pt;}
.y10f{bottom:8.480000pt;}
.y107{bottom:8.800000pt;}
.y10a{bottom:9.320000pt;}
.y6{bottom:11.040000pt;}
.y106{bottom:11.520000pt;}
.y17a{bottom:11.680000pt;}
.y109{bottom:13.960000pt;}
.y8{bottom:16.160000pt;}
.y115{bottom:18.080000pt;}
.y117{bottom:20.800000pt;}
.y116{bottom:21.440000pt;}
.y114{bottom:22.720000pt;}
.y16b{bottom:22.880000pt;}
.y10b{bottom:23.840000pt;}
.y172{bottom:25.440000pt;}
.y119{bottom:25.600000pt;}
.y10e{bottom:26.080000pt;}
.y179{bottom:29.280000pt;}
.yd{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y113{bottom:40.320000pt;}
.y171{bottom:43.040000pt;}
.yc{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.ye{bottom:67.520000pt;}
.yb{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y8d{bottom:90.080000pt;}
.yba{bottom:90.880000pt;}
.yd7{bottom:92.960000pt;}
.y15f{bottom:94.880000pt;}
.y6b{bottom:95.200000pt;}
.y3c{bottom:97.280000pt;}
.y178{bottom:97.920000pt;}
.y199{bottom:98.080000pt;}
.y1ab{bottom:98.880000pt;}
.y1a8{bottom:100.960000pt;}
.y11f{bottom:102.240000pt;}
.yf3{bottom:105.600000pt;}
.y135{bottom:107.680000pt;}
.yb9{bottom:108.480000pt;}
.y8c{bottom:108.640000pt;}
.yd6{bottom:110.560000pt;}
.y2{bottom:111.706667pt;}
.y15e{bottom:112.480000pt;}
.y6a{bottom:112.800000pt;}
.y3b{bottom:114.880000pt;}
.y198{bottom:115.680000pt;}
.y1aa{bottom:116.640000pt;}
.y1a7{bottom:118.560000pt;}
.y11e{bottom:119.840000pt;}
.yf2{bottom:123.200000pt;}
.y134{bottom:125.280000pt;}
.y8b{bottom:126.240000pt;}
.yd5{bottom:128.160000pt;}
.y15d{bottom:130.240000pt;}
.y69{bottom:130.400000pt;}
.y3a{bottom:132.480000pt;}
.y197{bottom:133.440000pt;}
.y1a9{bottom:134.080000pt;}
.y1a6{bottom:136.186667pt;}
.y11d{bottom:137.626667pt;}
.y133{bottom:142.906667pt;}
.ya5{bottom:143.546667pt;}
.y177{bottom:143.706667pt;}
.y8a{bottom:143.866667pt;}
.y15c{bottom:147.866667pt;}
.y68{bottom:148.186667pt;}
.y39{bottom:150.266667pt;}
.yd4{bottom:153.786667pt;}
.y11c{bottom:155.226667pt;}
.y196{bottom:159.066667pt;}
.y132{bottom:160.666667pt;}
.ya4{bottom:161.146667pt;}
.y89{bottom:161.466667pt;}
.y15b{bottom:165.466667pt;}
.y67{bottom:165.786667pt;}
.y38{bottom:167.866667pt;}
.yd3{bottom:171.386667pt;}
.y1a5{bottom:171.546667pt;}
.y118{bottom:171.706667pt;}
.y195{bottom:176.666667pt;}
.ya3{bottom:178.746667pt;}
.y88{bottom:179.226667pt;}
.y175{bottom:182.906667pt;}
.y15a{bottom:183.066667pt;}
.y66{bottom:183.386667pt;}
.y37{bottom:185.466667pt;}
.yd2{bottom:189.146667pt;}
.y194{bottom:194.266667pt;}
.y87{bottom:196.826667pt;}
.ya2{bottom:197.306667pt;}
.y159{bottom:200.666667pt;}
.y65{bottom:200.986667pt;}
.y36{bottom:203.066667pt;}
.yd1{bottom:206.746667pt;}
.y193{bottom:211.866667pt;}
.y112{bottom:213.786667pt;}
.y131{bottom:214.426667pt;}
.ya1{bottom:215.866667pt;}
.y158{bottom:218.426667pt;}
.y64{bottom:218.586667pt;}
.y35{bottom:220.666667pt;}
.y174{bottom:222.266667pt;}
.yf1{bottom:223.066667pt;}
.yd0{bottom:224.346667pt;}
.y192{bottom:229.626667pt;}
.y130{bottom:232.026667pt;}
.ya0{bottom:234.586667pt;}
.y157{bottom:236.026667pt;}
.y63{bottom:236.346667pt;}
.y34{bottom:238.426667pt;}
.yf0{bottom:240.666667pt;}
.y1a4{bottom:241.946667pt;}
.y191{bottom:247.226667pt;}
.y9f{bottom:253.146667pt;}
.y156{bottom:253.626667pt;}
.y62{bottom:253.946667pt;}
.y33{bottom:256.026667pt;}
.y12f{bottom:257.786667pt;}
.yef{bottom:258.266667pt;}
.y1a3{bottom:259.706667pt;}
.y170{bottom:261.466667pt;}
.y190{bottom:264.826667pt;}
.y10d{bottom:270.586667pt;}
.y9e{bottom:270.746667pt;}
.y61{bottom:271.546667pt;}
.y155{bottom:272.186667pt;}
.y32{bottom:273.626667pt;}
.y12e{bottom:275.386667pt;}
.yee{bottom:275.866667pt;}
.yb8{bottom:276.026667pt;}
.y1a2{bottom:277.306667pt;}
.y18f{bottom:283.386667pt;}
.y9d{bottom:288.346667pt;}
.y60{bottom:289.146667pt;}
.y154{bottom:290.746667pt;}
.y31{bottom:291.226667pt;}
.y12d{bottom:292.986667pt;}
.yb7{bottom:294.586667pt;}
.y1a1{bottom:294.906667pt;}
.y18e{bottom:300.986667pt;}
.y9c{bottom:305.946667pt;}
.y5f{bottom:306.746667pt;}
.y30{bottom:308.826667pt;}
.y153{bottom:309.466667pt;}
.y12c{bottom:310.586667pt;}
.yed{bottom:312.186667pt;}
.y1a0{bottom:312.506667pt;}
.yb6{bottom:313.146667pt;}
.y18d{bottom:318.746667pt;}
.y16f{bottom:320.986667pt;}
.y9b{bottom:323.706667pt;}
.y5e{bottom:324.506667pt;}
.y2f{bottom:326.586667pt;}
.yec{bottom:326.906667pt;}
.y152{bottom:327.066667pt;}
.y12b{bottom:329.146667pt;}
.y19f{bottom:330.106667pt;}
.yb5{bottom:331.866667pt;}
.y18c{bottom:337.306667pt;}
.y9a{bottom:341.306667pt;}
.y5d{bottom:343.066667pt;}
.y2e{bottom:344.186667pt;}
.y151{bottom:344.666667pt;}
.y12a{bottom:346.906667pt;}
.y19e{bottom:347.866667pt;}
.yb4{bottom:349.466667pt;}
.y108{bottom:353.466667pt;}
.y18b{bottom:354.906667pt;}
.y16e{bottom:360.226667pt;}
.y5c{bottom:360.706667pt;}
.y2d{bottom:361.826667pt;}
.y150{bottom:362.306667pt;}
.y129{bottom:364.546667pt;}
.y19d{bottom:365.506667pt;}
.y86{bottom:366.466667pt;}
.yb3{bottom:367.106667pt;}
.y18a{bottom:373.506667pt;}
.ycf{bottom:373.666667pt;}
.y5b{bottom:379.266667pt;}
.y2c{bottom:379.426667pt;}
.y14f{bottom:379.906667pt;}
.y128{bottom:382.146667pt;}
.y19c{bottom:383.106667pt;}
.y105{bottom:383.906667pt;}
.y16d{bottom:384.226667pt;}
.yb2{bottom:384.706667pt;}
.y85{bottom:385.186667pt;}
.y189{bottom:391.106667pt;}
.yce{bottom:391.266667pt;}
.y5a{bottom:396.866667pt;}
.y2b{bottom:397.026667pt;}
.y14e{bottom:397.506667pt;}
.y127{bottom:399.746667pt;}
.y19b{bottom:400.706667pt;}
.yb1{bottom:402.306667pt;}
.y84{bottom:403.746667pt;}
.y16c{bottom:408.226667pt;}
.ycd{bottom:408.866667pt;}
.y59{bottom:414.466667pt;}
.y2a{bottom:414.786667pt;}
.y14d{bottom:415.266667pt;}
.y104{bottom:417.026667pt;}
.y126{bottom:417.346667pt;}
.y19a{bottom:418.306667pt;}
.yb0{bottom:420.066667pt;}
.y83{bottom:422.306667pt;}
.ycc{bottom:426.466667pt;}
.y188{bottom:427.426667pt;}
.yeb{bottom:432.066667pt;}
.y16a{bottom:432.226667pt;}
.y29{bottom:432.386667pt;}
.y14c{bottom:432.866667pt;}
.y58{bottom:433.186667pt;}
.y103{bottom:434.626667pt;}
.y125{bottom:436.066667pt;}
.y82{bottom:440.866667pt;}
.y187{bottom:445.026667pt;}
.ycb{bottom:445.186667pt;}
.yea{bottom:449.826667pt;}
.y28{bottom:449.986667pt;}
.y14b{bottom:450.466667pt;}
.y57{bottom:450.786667pt;}
.y102{bottom:452.226667pt;}
.y124{bottom:453.666667pt;}
.y81{bottom:458.466667pt;}
.y186{bottom:462.626667pt;}
.yca{bottom:463.746667pt;}
.ye9{bottom:467.426667pt;}
.y27{bottom:467.586667pt;}
.y14a{bottom:468.066667pt;}
.y56{bottom:469.346667pt;}
.y101{bottom:469.826667pt;}
.y123{bottom:471.266667pt;}
.y169{bottom:471.586667pt;}
.y80{bottom:476.226667pt;}
.y185{bottom:481.186667pt;}
.yc9{bottom:482.306667pt;}
.y26{bottom:485.186667pt;}
.y149{bottom:485.666667pt;}
.ye8{bottom:485.986667pt;}
.y55{bottom:486.946667pt;}
.y100{bottom:487.586667pt;}
.y122{bottom:488.866667pt;}
.y167{bottom:495.586667pt;}
.y184{bottom:498.946667pt;}
.yc8{bottom:500.866667pt;}
.y7f{bottom:501.826667pt;}
.y25{bottom:502.946667pt;}
.y148{bottom:503.426667pt;}
.ye7{bottom:503.586667pt;}
.yff{bottom:505.186667pt;}
.y54{bottom:505.506667pt;}
.y121{bottom:506.466667pt;}
.y183{bottom:517.506667pt;}
.ye6{bottom:518.306667pt;}
.yc7{bottom:518.466667pt;}
.y7e{bottom:519.426667pt;}
.y24{bottom:520.546667pt;}
.y147{bottom:521.026667pt;}
.yfe{bottom:522.786667pt;}
.y53{bottom:523.266667pt;}
.y120{bottom:524.226667pt;}
.y166{bottom:524.706667pt;}
.y99{bottom:532.386667pt;}
.y182{bottom:535.106667pt;}
.yc6{bottom:536.066667pt;}
.y7d{bottom:537.026667pt;}
.y23{bottom:538.146667pt;}
.y146{bottom:538.626667pt;}
.yfd{bottom:541.346667pt;}
.y52{bottom:541.826667pt;}
.y98{bottom:550.146667pt;}
.y165{bottom:550.306667pt;}
.y181{bottom:552.706667pt;}
.yc5{bottom:553.826667pt;}
.y22{bottom:555.746667pt;}
.y145{bottom:557.186667pt;}
.yfc{bottom:558.946667pt;}
.y51{bottom:559.426667pt;}
.y7c{bottom:562.626667pt;}
.y164{bottom:567.906667pt;}
.y97{bottom:568.706667pt;}
.y180{bottom:571.266667pt;}
.yc4{bottom:571.426667pt;}
.y21{bottom:573.346667pt;}
.y144{bottom:574.786667pt;}
.y50{bottom:577.053333pt;}
.yfb{bottom:577.533333pt;}
.y7b{bottom:580.413333pt;}
.y163{bottom:585.533333pt;}
.y96{bottom:587.293333pt;}
.yc3{bottom:589.053333pt;}
.y20{bottom:591.133333pt;}
.y143{bottom:592.573333pt;}
.y4f{bottom:594.653333pt;}
.yfa{bottom:595.293333pt;}
.y7a{bottom:598.013333pt;}
.y162{bottom:603.293333pt;}
.y95{bottom:605.853333pt;}
.yc2{bottom:606.653333pt;}
.ye5{bottom:607.613333pt;}
.y1f{bottom:608.733333pt;}
.y142{bottom:610.173333pt;}
.y4e{bottom:612.413333pt;}
.yaf{bottom:613.853333pt;}
.y79{bottom:615.613333pt;}
.y161{bottom:620.893333pt;}
.yc1{bottom:624.253333pt;}
.ye4{bottom:625.213333pt;}
.y1e{bottom:626.333333pt;}
.y141{bottom:627.773333pt;}
.y4d{bottom:630.013333pt;}
.y94{bottom:631.453333pt;}
.yae{bottom:632.413333pt;}
.y78{bottom:633.213333pt;}
.y160{bottom:638.493333pt;}
.yc0{bottom:642.013333pt;}
.ye3{bottom:642.813333pt;}
.y1d{bottom:643.933333pt;}
.y140{bottom:646.333333pt;}
.y4c{bottom:647.613333pt;}
.y93{bottom:649.213333pt;}
.yf9{bottom:650.013333pt;}
.yad{bottom:650.973333pt;}
.y77{bottom:658.813333pt;}
.ybf{bottom:659.613333pt;}
.y17f{bottom:660.413333pt;}
.ye2{bottom:661.373333pt;}
.y1c{bottom:661.533333pt;}
.y13f{bottom:663.933333pt;}
.y4b{bottom:665.213333pt;}
.y92{bottom:666.813333pt;}
.yf8{bottom:667.613333pt;}
.yac{bottom:669.693333pt;}
.y76{bottom:676.573333pt;}
.ye1{bottom:678.973333pt;}
.y1b{bottom:679.293333pt;}
.y4a{bottom:682.813333pt;}
.y91{bottom:684.413333pt;}
.yf7{bottom:686.333333pt;}
.yab{bottom:687.293333pt;}
.y13e{bottom:689.693333pt;}
.y75{bottom:694.173333pt;}
.ye0{bottom:696.733333pt;}
.y1a{bottom:696.893333pt;}
.y49{bottom:700.573333pt;}
.y90{bottom:702.013333pt;}
.yf6{bottom:703.933333pt;}
.yaa{bottom:704.893333pt;}
.y13d{bottom:707.293333pt;}
.y74{bottom:711.773333pt;}
.ydf{bottom:714.333333pt;}
.y19{bottom:714.493333pt;}
.y48{bottom:718.173333pt;}
.yf5{bottom:721.533333pt;}
.ya9{bottom:722.493333pt;}
.y13c{bottom:724.893333pt;}
.y73{bottom:729.373333pt;}
.yde{bottom:731.933333pt;}
.y18{bottom:732.093333pt;}
.y17e{bottom:732.893333pt;}
.y47{bottom:735.773333pt;}
.yf4{bottom:739.133333pt;}
.ya8{bottom:740.093333pt;}
.y13b{bottom:743.453333pt;}
.ydd{bottom:749.533333pt;}
.y17{bottom:749.693333pt;}
.y17d{bottom:750.493333pt;}
.y46{bottom:753.373333pt;}
.y72{bottom:754.973333pt;}
.ya7{bottom:757.853333pt;}
.y13a{bottom:761.053333pt;}
.y16{bottom:767.453333pt;}
.ydc{bottom:768.093333pt;}
.y17c{bottom:769.053333pt;}
.y45{bottom:770.973333pt;}
.ya6{bottom:772.573333pt;}
.y71{bottom:772.733333pt;}
.y15{bottom:785.053333pt;}
.ydb{bottom:785.853333pt;}
.y139{bottom:786.813333pt;}
.y44{bottom:788.733333pt;}
.y70{bottom:790.333333pt;}
.y14{bottom:802.693333pt;}
.yda{bottom:803.493333pt;}
.y138{bottom:804.453333pt;}
.y43{bottom:806.373333pt;}
.y6f{bottom:815.973333pt;}
.y13{bottom:820.773333pt;}
.ybe{bottom:821.093333pt;}
.yd9{bottom:822.053333pt;}
.y17b{bottom:823.013333pt;}
.y42{bottom:823.973333pt;}
.y6e{bottom:833.573333pt;}
.ybd{bottom:838.693333pt;}
.y12{bottom:839.653333pt;}
.y137{bottom:840.613333pt;}
.y41{bottom:841.573333pt;}
.y6d{bottom:851.173333pt;}
.ybc{bottom:857.253333pt;}
.y136{bottom:858.213333pt;}
.y40{bottom:859.173333pt;}
.y11{bottom:860.613333pt;}
.y6c{bottom:868.933333pt;}
.ybb{bottom:875.973333pt;}
.y3f{bottom:876.933333pt;}
.y10{bottom:888.773333pt;}
.y8f{bottom:892.613333pt;}
.yd8{bottom:893.573333pt;}
.y3e{bottom:894.533333pt;}
.y8e{bottom:911.173333pt;}
.y3d{bottom:912.133333pt;}
.ya{bottom:924.773333pt;}
.y9{bottom:929.573333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.241250pt;}
.hb{height:18.880000pt;}
.h1c{height:20.000000pt;}
.h10{height:24.000000pt;}
.h12{height:26.432000pt;}
.h16{height:27.024375pt;}
.h15{height:27.477500pt;}
.h8{height:29.760000pt;}
.h18{height:31.217812pt;}
.h17{height:31.741250pt;}
.h20{height:35.200000pt;}
.h1e{height:35.232000pt;}
.h1d{height:35.360000pt;}
.h14{height:36.320000pt;}
.he{height:37.479688pt;}
.h1b{height:38.080000pt;}
.h19{height:38.560000pt;}
.h4{height:41.543750pt;}
.h21{height:41.792000pt;}
.h22{height:43.108125pt;}
.hf{height:43.782500pt;}
.h5{height:46.505938pt;}
.h11{height:48.359688pt;}
.ha{height:51.548750pt;}
.h1a{height:52.800000pt;}
.h1f{height:55.520000pt;}
.h3{height:56.445312pt;}
.h13{height:57.385938pt;}
.h9{height:58.563750pt;}
.hd{height:60.057813pt;}
.hc{height:74.521563pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.wa{width:75.392000pt;}
.w7{width:113.152000pt;}
.w3{width:116.192000pt;}
.wb{width:138.106667pt;}
.w6{width:144.666667pt;}
.w9{width:148.346667pt;}
.w8{width:217.306667pt;}
.wc{width:264.386667pt;}
.wd{width:273.026667pt;}
.w2{width:577.253333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x1f{left:-71.360000pt;}
.x20{left:-63.520000pt;}
.x1d{left:-58.880000pt;}
.x1e{left:-52.000000pt;}
.x21{left:-7.840000pt;}
.x22{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:47.999988pt;}
.x1{left:50.240000pt;}
.x23{left:56.160000pt;}
.xc{left:71.999988pt;}
.x25{left:96.031988pt;}
.x4{left:105.146667pt;}
.xa{left:118.911988pt;}
.x1a{left:198.106667pt;}
.x15{left:230.906655pt;}
.x11{left:233.786655pt;}
.x12{left:237.186655pt;}
.xf{left:261.026655pt;}
.x7{left:271.746655pt;}
.xd{left:284.866655pt;}
.x13{left:289.986655pt;}
.xe{left:292.386655pt;}
.x19{left:297.186655pt;}
.x18{left:299.586655pt;}
.x14{left:307.746655pt;}
.x1b{left:311.266667pt;}
.xb{left:328.546655pt;}
.x9{left:337.506655pt;}
.x8{left:396.893322pt;}
.x16{left:444.893322pt;}
.x17{left:460.893322pt;}
.x24{left:462.653333pt;}
.x10{left:528.893322pt;}
.x3{left:627.493333pt;}
.x1c{left:676.933333pt;}
.x6{left:737.120000pt;}
}




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