
    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_0eb63c453f525d2d29f7555e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_5b9d6695d7aa62e52f722581.woff')format("woff");}.ff2{font-family:ff2;line-height:0.713867;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_c3b84f5f7a6c543275a14fca.woff')format("woff");}.ff3{font-family:ff3;line-height:1.005371;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_11c8319d07ec89e42e39fd70.woff')format("woff");}.ff4{font-family:ff4;line-height:1.005371;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_cf3ceed2efd5dc2192cb7d5d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_3fd667f4429dd30a1e785aed.woff')format("woff");}.ff6{font-family:ff6;line-height:0.988281;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_cedcec070a6e95a454bcce89.woff')format("woff");}.ff7{font-family:ff7;line-height:1.005371;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_9be33b8c2b386aa9cb72ba7a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_82930f4b6293ff49a398beba.woff')format("woff");}.ff9{font-family:ff9;line-height:0.988281;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_8699aedbfec6a895a9b8efd8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.917969;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_6210178a630118e79eb2e425.woff')format("woff");}.ffb{font-family:ffb;line-height:0.988281;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_ca0613a21dbf15e59a47ab57.woff')format("woff");}.ffc{font-family:ffc;line-height:0.988281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_0bcc5c3281a5ff97ba984ff3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.759277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9a714a6ff69d45cb9d40cbb4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.795410;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:fff;src:url('chunks/assets/font_3d538f8d5ec418f7fc660f4f.woff')format("woff");}.fff{font-family:fff;line-height:0.988281;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:ff10;src:url('chunks/assets/font_6f7172d2f86e511b670453f0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;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:ff11;src:url('chunks/assets/font_234e9fd70d6de22ba6fdec1d.woff')format("woff");}.ff11{font-family:ff11;line-height:0.723633;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:ff12;src:url('chunks/assets/font_90a82453f4905aa65ecb815d.woff')format("woff");}.ff12{font-family:ff12;line-height:0.963867;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:ff13;src:url('chunks/assets/font_db4ded174da303ccf0edd977.woff')format("woff");}.ff13{font-family:ff13;line-height:0.759277;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:49.499998px;}
.v3{vertical-align:53.999998px;}
.v2{vertical-align:98.999996px;}
.v4{vertical-align:103.499996px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.007909px;}
.ls4{letter-spacing:2.207153px;}
.ls0{letter-spacing:13.517577px;}
.ls3{letter-spacing:537.908158px;}
.ls2{letter-spacing:550.423827px;}
.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;}
}
.wsf{word-spacing:-68.637082px;}
.ws2{word-spacing:-34.163964px;}
.ws20{word-spacing:-20.661276px;}
.ws3{word-spacing:-20.659881px;}
.ws23{word-spacing:-20.653311px;}
.ws22{word-spacing:-20.651961px;}
.ws11{word-spacing:-20.651916px;}
.ws27{word-spacing:-20.645346px;}
.ws25{word-spacing:-20.643996px;}
.ws4{word-spacing:-20.637381px;}
.ws26{word-spacing:-20.635986px;}
.ws1f{word-spacing:-20.634613px;}
.ws13{word-spacing:-20.629416px;}
.ws1e{word-spacing:-20.626671px;}
.ws1d{word-spacing:-20.624196px;}
.ws21{word-spacing:-20.622846px;}
.ws18{word-spacing:-20.620056px;}
.ws28{word-spacing:-20.613486px;}
.ws17{word-spacing:-20.612136px;}
.ws1{word-spacing:-20.606871px;}
.ws24{word-spacing:-20.598906px;}
.ws0{word-spacing:-16.365234px;}
.ws12{word-spacing:-0.063000px;}
.ws16{word-spacing:-0.056700px;}
.ws5{word-spacing:0.000000px;}
.ws8{word-spacing:234.566861px;}
.ws9{word-spacing:249.916982px;}
.ws7{word-spacing:293.361316px;}
.ws14{word-spacing:300.607920px;}
.ws6{word-spacing:307.160167px;}
.wsa{word-spacing:377.455061px;}
.wsc{word-spacing:396.013166px;}
.wsd{word-spacing:453.106914px;}
.wsb{word-spacing:456.306133px;}
.wse{word-spacing:534.058593px;}
.ws29{word-spacing:2208.850618px;}
.ws19{word-spacing:2545.914444px;}
.ws1c{word-spacing:2554.127824px;}
.ws1b{word-spacing:2605.669081px;}
.ws15{word-spacing:2649.181530px;}
.ws1a{word-spacing:2725.224496px;}
.ws10{word-spacing:2734.130013px;}
._2e{margin-left:-4.007812px;}
._b{margin-left:-2.207153px;}
._d{width:13.543943px;}
._34{width:35.758297px;}
._6{width:132.499505px;}
._9{width:174.027823px;}
._18{width:180.782220px;}
._19{width:188.494622px;}
._3{width:194.453583px;}
._1a{width:196.066399px;}
._8{width:201.590323px;}
._14{width:216.404288px;}
._5{width:240.789541px;}
._15{width:260.138661px;}
._f{width:263.592762px;}
._25{width:298.054699px;}
._16{width:303.732410px;}
._13{width:304.800278px;}
._11{width:324.645983px;}
._27{width:334.076670px;}
._1c{width:347.260240px;}
._10{width:349.347642px;}
._1f{width:357.086433px;}
._2a{width:370.098641px;}
._20{width:388.124961px;}
._12{width:392.049300px;}
._1b{width:400.069317px;}
._23{width:422.885703px;}
._22{width:458.907718px;}
._24{width:490.781228px;}
._2b{width:492.657693px;}
._28{width:504.839333px;}
._26{width:527.141578px;}
._29{width:529.018043px;}
._4{width:537.908158px;}
._2{width:550.423827px;}
._21{width:570.700171px;}
._a{width:584.244116px;}
._e{width:670.095675px;}
._17{width:689.752411px;}
._1e{width:807.503873px;}
._33{width:901.070030px;}
._2f{width:951.203939px;}
._c{width:1348.330023px;}
._38{width:1462.763611px;}
._3b{width:1493.217708px;}
._3c{width:1507.106626px;}
._39{width:1513.289732px;}
._0{width:1721.669607px;}
._7{width:1833.419234px;}
._32{width:1838.687179px;}
._37{width:2042.314369px;}
._35{width:2075.075596px;}
._1{width:2169.283358px;}
._2d{width:2207.666287px;}
._1d{width:2217.079376px;}
._36{width:2247.956449px;}
._30{width:2374.264061px;}
._3a{width:2390.429341px;}
._31{width:2444.354632px;}
._2c{width:2653.741954px;}
.fc8{color:rgb(152,26,26);}
.fc7{color:rgb(170,85,0);}
.fc6{color:rgb(51,0,170);}
.fc3{color:rgb(170,17,17);}
.fc9{color:rgb(17,102,68);}
.fc1{color:rgb(65,131,196);}
.fc5{color:rgb(153,153,153);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(119,119,119);}
.fc0{color:rgb(51,51,51);}
.fs4{font-size:53.999998px;}
.fs3{font-size:56.699999px;}
.fs1{font-size:62.999997px;}
.fs6{font-size:78.749997px;}
.fs5{font-size:94.499996px;}
.fs2{font-size:110.249995px;}
.fs0{font-size:141.749994px;}
.y0{bottom:0.000000px;}
.y1f{bottom:0.125859px;}
.y124{bottom:7.875000px;}
.y142{bottom:9.000000px;}
.y1be{bottom:14.624999px;}
.ya5{bottom:16.874999px;}
.y155{bottom:22.499999px;}
.y6e{bottom:25.874999px;}
.y103{bottom:26.999999px;}
.y123{bottom:30.374999px;}
.y20{bottom:30.744139px;}
.y2f{bottom:31.499999px;}
.y192{bottom:33.749999px;}
.y1d0{bottom:34.874999px;}
.yc4{bottom:38.249998px;}
.ydf{bottom:39.374998px;}
.y1bd{bottom:40.499998px;}
.y2e{bottom:43.874998px;}
.y102{bottom:49.499998px;}
.y17d{bottom:50.624998px;}
.y6d{bottom:51.749998px;}
.y148{bottom:52.874998px;}
.y122{bottom:53.999998px;}
.ya4{bottom:55.124998px;}
.y8c{bottom:56.249998px;}
.yde{bottom:61.874997px;}
.y136{bottom:64.124997px;}
.y1{bottom:67.320050px;}
.y191{bottom:67.499997px;}
.y1cf{bottom:68.624997px;}
.yc3{bottom:70.874997px;}
.y101{bottom:73.124997px;}
.y147{bottom:75.374997px;}
.y121{bottom:76.499997px;}
.y1bc{bottom:77.624997px;}
.ya3{bottom:79.874997px;}
.y8b{bottom:82.124997px;}
.ydd{bottom:84.374996px;}
.y135{bottom:88.874996px;}
.y6c{bottom:92.249996px;}
.y154{bottom:93.374996px;}
.y2d{bottom:95.624996px;}
.yc2{bottom:96.749996px;}
.y146{bottom:97.874996px;}
.y120{bottom:98.999996px;}
.y17c{bottom:101.249996px;}
.y1bb{bottom:103.499996px;}
.ydc{bottom:106.874996px;}
.y105{bottom:110.249995px;}
.y1ac{bottom:113.624995px;}
.y134{bottom:114.749995px;}
.y100{bottom:118.124995px;}
.y16a{bottom:119.249995px;}
.y143{bottom:120.195048px;}
.y2b{bottom:121.499995px;}
.y8a{bottom:122.624995px;}
.y190{bottom:124.874995px;}
.y6b{bottom:125.999995px;}
.yc1{bottom:129.374995px;}
.y153{bottom:131.624995px;}
.y8f{bottom:132.749994px;}
.y17b{bottom:133.874994px;}
.y104{bottom:134.999994px;}
.y1ba{bottom:136.124994px;}
.y1ab{bottom:138.374994px;}
.yff{bottom:140.624994px;}
.y11f{bottom:143.999994px;}
.y2c{bottom:146.249994px;}
.y1e{bottom:149.624994px;}
.y133{bottom:151.874994px;}
.y19b{bottom:155.249994px;}
.ydb{bottom:156.374993px;}
.y18f{bottom:158.624993px;}
.y1b9{bottom:160.874993px;}
.y89{bottom:163.124993px;}
.y152{bottom:164.249993px;}
.y6a{bottom:166.499993px;}
.yc0{bottom:167.624993px;}
.y169{bottom:169.874993px;}
.y8e{bottom:172.124993px;}
.y1d{bottom:174.374993px;}
.yda{bottom:181.124992px;}
.yfe{bottom:185.624992px;}
.y2a{bottom:186.749992px;}
.y88{bottom:188.999992px;}
.y141{bottom:190.124992px;}
.y18e{bottom:191.249992px;}
.ybf{bottom:192.374992px;}
.y168{bottom:194.624992px;}
.y151{bottom:196.874992px;}
.y28{bottom:199.124992px;}
.y1c{bottom:200.249992px;}
.y69{bottom:204.749991px;}
.yfd{bottom:208.124991px;}
.y27{bottom:211.499991px;}
.y140{bottom:212.624991px;}
.y132{bottom:219.374991px;}
.yd9{bottom:222.749991px;}
.y1b{bottom:224.999991px;}
.y68{bottom:229.499990px;}
.ybe{bottom:230.624990px;}
.yfc{bottom:231.749990px;}
.y145{bottom:233.999990px;}
.y11e{bottom:235.124990px;}
.y29{bottom:236.249990px;}
.y131{bottom:244.124990px;}
.y106{bottom:245.070042px;}
.y167{bottom:245.249990px;}
.y1a{bottom:249.749990px;}
.y8d{bottom:251.999989px;}
.y1b8{bottom:253.124989px;}
.yfb{bottom:254.249989px;}
.y67{bottom:255.374989px;}
.y144{bottom:256.499989px;}
.y11d{bottom:257.624989px;}
.y150{bottom:259.874989px;}
.y17a{bottom:263.249989px;}
.y18d{bottom:266.624989px;}
.ybd{bottom:267.749989px;}
.y166{bottom:269.999989px;}
.y87{bottom:271.124989px;}
.y25{bottom:276.749988px;}
.y11c{bottom:280.124988px;}
.y130{bottom:282.374988px;}
.y14f{bottom:285.749988px;}
.y1de{bottom:286.874988px;}
.y19{bottom:287.999988px;}
.y26{bottom:289.124988px;}
.y1b7{bottom:290.249988px;}
.y18c{bottom:292.499988px;}
.ybc{bottom:293.624988px;}
.y66{bottom:295.874988px;}
.y1ce{bottom:296.999988px;}
.yfa{bottom:299.249988px;}
.y179{bottom:300.374987px;}
.y24{bottom:301.499987px;}
.y11b{bottom:302.624987px;}
.y86{bottom:303.749987px;}
.yd8{bottom:309.374987px;}
.y18{bottom:313.874987px;}
.ybb{bottom:318.374987px;}
.y12f{bottom:319.499987px;}
.yf9{bottom:321.749987px;}
.y1cd{bottom:322.874987px;}
.y11a{bottom:325.124986px;}
.y23{bottom:326.249986px;}
.y14e{bottom:327.374986px;}
.y1b6{bottom:328.499986px;}
.y18b{bottom:331.874986px;}
.y1dd{bottom:336.374986px;}
.y165{bottom:337.499986px;}
.y19a{bottom:339.749986px;}
.y65{bottom:340.874986px;}
.ya2{bottom:341.999986px;}
.yba{bottom:343.124986px;}
.y85{bottom:344.249986px;}
.y12e{bottom:345.374986px;}
.y1aa{bottom:346.499986px;}
.y119{bottom:347.624986px;}
.y17{bottom:352.124985px;}
.y178{bottom:363.374985px;}
.y199{bottom:365.624985px;}
.y22{bottom:366.749985px;}
.yb9{bottom:368.999985px;}
.y118{bottom:370.124985px;}
.y13e{bottom:372.374984px;}
.yd7{bottom:375.749984px;}
.y16{bottom:376.874984px;}
.y1a9{bottom:379.124984px;}
.y84{bottom:385.874984px;}
.y1dc{bottom:388.124984px;}
.yf8{bottom:389.249984px;}
.y198{bottom:390.374984px;}
.y21{bottom:391.499984px;}
.y64{bottom:392.624984px;}
.y117{bottom:393.749984px;}
.y12d{bottom:395.999983px;}
.y13d{bottom:397.124983px;}
.ya1{bottom:404.999983px;}
.yb8{bottom:406.124983px;}
.yd6{bottom:408.374983px;}
.y83{bottom:410.624983px;}
.yf7{bottom:412.874983px;}
.y177{bottom:413.999983px;}
.y15{bottom:415.124983px;}
.y116{bottom:416.249983px;}
.y14d{bottom:417.374983px;}
.y12c{bottom:420.749982px;}
.y1db{bottom:425.249982px;}
.y63{bottom:426.374982px;}
.ya0{bottom:430.874982px;}
.yf6{bottom:435.374982px;}
.y115{bottom:438.749982px;}
.y197{bottom:440.999982px;}
.yd5{bottom:442.124982px;}
.y48{bottom:443.249982px;}
.yb7{bottom:444.374981px;}
.y1a8{bottom:445.499981px;}
.y82{bottom:452.249981px;}
.y14{bottom:453.374981px;}
.yf5{bottom:457.874981px;}
.y12b{bottom:458.999981px;}
.y18a{bottom:460.124981px;}
.y114{bottom:461.249981px;}
.y14c{bottom:466.874981px;}
.y47{bottom:469.124980px;}
.y9f{bottom:470.249980px;}
.y13c{bottom:472.499980px;}
.yd4{bottom:474.749980px;}
.y176{bottom:476.999980px;}
.y13{bottom:478.124980px;}
.yf4{bottom:480.374980px;}
.yb6{bottom:482.624980px;}
.y113{bottom:483.749980px;}
.y62{bottom:487.124980px;}
.y1cc{bottom:489.374980px;}
.y1da{bottom:490.499980px;}
.y81{bottom:492.749979px;}
.y189{bottom:501.749979px;}
.yf3{bottom:502.874979px;}
.y12{bottom:503.999979px;}
.y1b5{bottom:505.124979px;}
.y46{bottom:506.249979px;}
.y164{bottom:507.374979px;}
.y61{bottom:511.874979px;}
.yd3{bottom:512.999979px;}
.y1cb{bottom:514.124979px;}
.y9e{bottom:515.249979px;}
.y1d9{bottom:516.374978px;}
.y80{bottom:517.499978px;}
.y5e{bottom:524.249978px;}
.yf2{bottom:525.374978px;}
.y11{bottom:528.749978px;}
.y12a{bottom:529.874978px;}
.y45{bottom:532.124978px;}
.y60{bottom:537.749978px;}
.y1ca{bottom:538.874978px;}
.yb5{bottom:539.999977px;}
.y14b{bottom:542.249977px;}
.y9d{bottom:547.874977px;}
.yd2{bottom:550.124977px;}
.y188{bottom:551.249977px;}
.y112{bottom:552.374977px;}
.y44{bottom:556.874977px;}
.y163{bottom:557.999977px;}
.y7f{bottom:559.124977px;}
.y5f{bottom:562.499977px;}
.y1c9{bottom:564.749976px;}
.y10{bottom:566.999976px;}
.y129{bottom:569.249976px;}
.y175{bottom:570.374976px;}
.yf1{bottom:571.499976px;}
.y9c{bottom:572.624976px;}
.yb4{bottom:573.749976px;}
.yd1{bottom:574.874976px;}
.y187{bottom:575.999976px;}
.y13f{bottom:582.570028px;}
.y43{bottom:582.749976px;}
.y1d8{bottom:591.749975px;}
.yf{bottom:592.874975px;}
.yf0{bottom:593.999975px;}
.y111{bottom:597.374975px;}
.yb3{bottom:598.499975px;}
.y7e{bottom:599.624975px;}
.y14a{bottom:600.749975px;}
.y5d{bottom:601.874975px;}
.y9b{bottom:606.374975px;}
.yd0{bottom:608.624975px;}
.y186{bottom:614.249974px;}
.y196{bottom:615.374974px;}
.yef{bottom:616.499974px;}
.y174{bottom:618.749974px;}
.y42{bottom:619.874974px;}
.y162{bottom:620.999974px;}
.y149{bottom:625.499974px;}
.y5c{bottom:627.749974px;}
.y9a{bottom:631.124974px;}
.ycf{bottom:633.374974px;}
.ye{bottom:634.499974px;}
.yb2{bottom:636.749973px;}
.y1a7{bottom:637.874973px;}
.yee{bottom:638.999973px;}
.y59{bottom:640.124973px;}
.y7d{bottom:641.249973px;}
.y110{bottom:642.374973px;}
.y41{bottom:645.749973px;}
.y185{bottom:646.874973px;}
.y1e2{bottom:649.124973px;}
.y173{bottom:651.374973px;}
.y5b{bottom:652.499973px;}
.y1c8{bottom:660.374972px;}
.yb1{bottom:661.499972px;}
.y1a6{bottom:662.624972px;}
.y99{bottom:664.874972px;}
.yce{bottom:667.124972px;}
.y40{bottom:670.499972px;}
.y184{bottom:672.749972px;}
.y195{bottom:673.874972px;}
.y1b4{bottom:676.124972px;}
.y172{bottom:677.249972px;}
.y5a{bottom:678.374972px;}
.y7c{bottom:681.749972px;}
.yd{bottom:683.999972px;}
.y1c7{bottom:686.249971px;}
.y10f{bottom:687.374971px;}
.y1a5{bottom:688.499971px;}
.y98{bottom:689.624971px;}
.ycd{bottom:691.874971px;}
.y1d7{bottom:692.999971px;}
.y3f{bottom:695.249971px;}
.yb0{bottom:699.749971px;}
.y171{bottom:701.999971px;}
.y183{bottom:705.374971px;}
.y7b{bottom:706.499971px;}
.y1b3{bottom:708.749970px;}
.yc{bottom:709.874970px;}
.y10e{bottom:710.999970px;}
.y161{bottom:712.124970px;}
.y1a4{bottom:713.249970px;}
.y56{bottom:717.749970px;}
.y1e1{bottom:719.999970px;}
.y1c6{bottom:723.374970px;}
.y58{bottom:730.124970px;}
.y128{bottom:731.249970px;}
.y7a{bottom:732.374969px;}
.y3e{bottom:733.499969px;}
.y1b2{bottom:734.624969px;}
.y156{bottom:735.570022px;}
.yaf{bottom:736.874969px;}
.y170{bottom:740.249969px;}
.y55{bottom:742.499969px;}
.y182{bottom:743.624969px;}
.yb{bottom:746.999969px;}
.y1c5{bottom:749.249969px;}
.y1a3{bottom:751.499969px;}
.yed{bottom:752.624969px;}
.ycc{bottom:754.874969px;}
.y52{bottom:755.999968px;}
.y1d6{bottom:757.124968px;}
.y3d{bottom:758.249968px;}
.y160{bottom:761.624968px;}
.yae{bottom:762.749968px;}
.y1b1{bottom:767.249968px;}
.y54{bottom:768.374968px;}
.y194{bottom:769.499968px;}
.y79{bottom:772.874968px;}
.y1c4{bottom:773.999968px;}
.yec{bottom:775.124968px;}
.y1a2{bottom:776.249968px;}
.y16f{bottom:777.374968px;}
.y10d{bottom:778.499968px;}
.y57{bottom:780.749967px;}
.y127{bottom:781.874967px;}
.y3c{bottom:784.124967px;}
.ya{bottom:785.249967px;}
.y15f{bottom:786.374967px;}
.yad{bottom:787.499967px;}
.y53{bottom:793.124967px;}
.ycb{bottom:795.374967px;}
.y97{bottom:796.499967px;}
.yeb{bottom:797.624967px;}
.y1d5{bottom:798.749967px;}
.y10c{bottom:800.999967px;}
.y181{bottom:806.624966px;}
.y3b{bottom:808.874966px;}
.y16e{bottom:811.124966px;}
.yac{bottom:812.249966px;}
.y78{bottom:813.374966px;}
.y1a1{bottom:814.499966px;}
.yea{bottom:820.124966px;}
.y96{bottom:821.249966px;}
.y9{bottom:822.374966px;}
.y10b{bottom:823.499966px;}
.y15e{bottom:824.624966px;}
.y1b0{bottom:825.749966px;}
.y51{bottom:832.499965px;}
.y3a{bottom:833.624965px;}
.y193{bottom:834.749965px;}
.y1e0{bottom:838.124965px;}
.yca{bottom:839.249965px;}
.ye9{bottom:842.624965px;}
.y16d{bottom:843.749965px;}
.y1c3{bottom:844.874965px;}
.y50{bottom:845.999965px;}
.y77{bottom:847.124965px;}
.y180{bottom:848.249965px;}
.y15d{bottom:849.374965px;}
.y1af{bottom:850.499965px;}
.y1a0{bottom:851.624965px;}
.y39{bottom:859.499964px;}
.y8{bottom:860.624964px;}
.y95{bottom:862.874964px;}
.yc9{bottom:863.999964px;}
.yab{bottom:865.124964px;}
.y10a{bottom:869.624964px;}
.y126{bottom:871.874964px;}
.y15c{bottom:874.124964px;}
.y16c{bottom:876.374963px;}
.y1c2{bottom:877.499963px;}
.y76{bottom:879.749963px;}
.y13b{bottom:880.874963px;}
.y38{bottom:884.249963px;}
.ye8{bottom:888.749963px;}
.y109{bottom:892.124963px;}
.y17f{bottom:896.624963px;}
.y7{bottom:897.749963px;}
.yc8{bottom:902.249962px;}
.y94{bottom:903.374962px;}
.yaa{bottom:904.499962px;}
.y1d4{bottom:905.624962px;}
.y37{bottom:910.124962px;}
.ye7{bottom:911.249962px;}
.y15b{bottom:912.374962px;}
.y108{bottom:914.624962px;}
.y13a{bottom:919.124962px;}
.y75{bottom:921.374962px;}
.y4e{bottom:923.624962px;}
.yc7{bottom:926.999961px;}
.y93{bottom:929.249961px;}
.y1d3{bottom:931.499961px;}
.ye6{bottom:933.749961px;}
.y36{bottom:934.874961px;}
.y6{bottom:935.999961px;}
.y107{bottom:937.124961px;}
.ya9{bottom:943.874961px;}
.y15a{bottom:944.999961px;}
.y74{bottom:946.124961px;}
.y125{bottom:947.249961px;}
.y4f{bottom:948.374960px;}
.y1ae{bottom:951.749960px;}
.y19f{bottom:952.874960px;}
.ye5{bottom:956.249960px;}
.y1d2{bottom:957.374960px;}
.y35{bottom:959.624960px;}
.y5{bottom:960.749960px;}
.y92{bottom:969.749960px;}
.y17e{bottom:973.124959px;}
.y1c1{bottom:974.249959px;}
.y73{bottom:978.749959px;}
.y139{bottom:980.999959px;}
.y159{bottom:983.249959px;}
.ya8{bottom:984.374959px;}
.y34{bottom:985.499959px;}
.y4{bottom:986.624959px;}
.y4d{bottom:987.749959px;}
.y19e{bottom:989.999959px;}
.y1ad{bottom:991.124959px;}
.y91{bottom:994.499959px;}
.y16b{bottom:997.874958px;}
.y1d1{bottom:998.999958px;}
.ye4{bottom:1001.249958px;}
.y1df{bottom:1002.374958px;}
.y33{bottom:1010.249958px;}
.y3{bottom:1011.374958px;}
.y4b{bottom:1013.624958px;}
.y138{bottom:1019.249958px;}
.y72{bottom:1020.374957px;}
.y158{bottom:1021.499957px;}
.ya7{bottom:1023.749957px;}
.y19d{bottom:1028.249957px;}
.y32{bottom:1036.124957px;}
.y1c0{bottom:1037.249957px;}
.y4c{bottom:1038.374957px;}
.y137{bottom:1043.999956px;}
.y71{bottom:1045.124956px;}
.ye3{bottom:1047.374956px;}
.yc6{bottom:1048.499956px;}
.y19c{bottom:1052.999956px;}
.y31{bottom:1060.874956px;}
.y1bf{bottom:1061.999956px;}
.y157{bottom:1063.124956px;}
.ya6{bottom:1064.249956px;}
.ye2{bottom:1069.874955px;}
.y70{bottom:1070.999955px;}
.yc5{bottom:1073.249955px;}
.y2{bottom:1076.624955px;}
.y4a{bottom:1078.874955px;}
.y90{bottom:1086.749955px;}
.ye1{bottom:1092.374954px;}
.y30{bottom:1102.499954px;}
.y49{bottom:1103.624954px;}
.y6f{bottom:1111.499954px;}
.ye0{bottom:1114.874954px;}
.h9{height:39.313475px;}
.h13{height:42.026660px;}
.h7{height:44.407617px;}
.h5{height:47.865232px;}
.h4{height:48.203611px;}
.h11{height:60.254514px;}
.h18{height:67.460446px;}
.h8{height:68.994138px;}
.h10{height:72.305417px;}
.hf{height:78.703854px;}
.h6{height:84.356320px;}
.he{height:86.348141px;}
.hb{height:97.703609px;}
.hd{height:102.203609px;}
.h3{height:108.458125px;}
.h12{height:121.499995px;}
.ha{height:147.203607px;}
.hc{height:151.703607px;}
.h16{height:294.749988px;}
.h17{height:317.249987px;}
.h15{height:340.874986px;}
.h14{height:951.749960px;}
.h2{height:1129.499953px;}
.h0{height:1264.320000px;}
.h1{height:1264.500000px;}
.w3{width:703.124971px;}
.w2{width:748.124969px;}
.w0{width:893.879970px;}
.w1{width:894.000000px;}
.x0{left:0.000000px;}
.x10{left:12.181640px;}
.xf{left:20.724609px;}
.xe{left:47.249998px;}
.x1{left:69.749997px;}
.xd{left:70.874997px;}
.x2{left:73.124997px;}
.x5{left:85.499996px;}
.x3{left:91.124996px;}
.x11{left:94.499996px;}
.x14{left:97.453121px;}
.xb{left:114.749995px;}
.x13{left:115.874995px;}
.xc{left:136.124994px;}
.x15{left:159.749993px;}
.x16{left:204.749991px;}
.x8{left:227.197262px;}
.x6{left:377.349599px;}
.x12{left:426.533191px;}
.x4{left:430.294910px;}
.x9{left:515.917947px;}
.x7{left:656.578098px;}
.xa{left:823.499966px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:43.999998pt;}
.v3{vertical-align:47.999998pt;}
.v2{vertical-align:87.999996pt;}
.v4{vertical-align:91.999996pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.007030pt;}
.ls4{letter-spacing:1.961914pt;}
.ls0{letter-spacing:12.015624pt;}
.ls3{letter-spacing:478.140585pt;}
.ls2{letter-spacing:489.265624pt;}
.wsf{word-spacing:-61.010739pt;}
.ws2{word-spacing:-30.367968pt;}
.ws20{word-spacing:-18.365578pt;}
.ws3{word-spacing:-18.364338pt;}
.ws23{word-spacing:-18.358498pt;}
.ws22{word-spacing:-18.357298pt;}
.ws11{word-spacing:-18.357258pt;}
.ws27{word-spacing:-18.351418pt;}
.ws25{word-spacing:-18.350218pt;}
.ws4{word-spacing:-18.344338pt;}
.ws26{word-spacing:-18.343098pt;}
.ws1f{word-spacing:-18.341878pt;}
.ws13{word-spacing:-18.337258pt;}
.ws1e{word-spacing:-18.334818pt;}
.ws1d{word-spacing:-18.332618pt;}
.ws21{word-spacing:-18.331418pt;}
.ws18{word-spacing:-18.328938pt;}
.ws28{word-spacing:-18.323098pt;}
.ws17{word-spacing:-18.321898pt;}
.ws1{word-spacing:-18.317218pt;}
.ws24{word-spacing:-18.310138pt;}
.ws0{word-spacing:-14.546875pt;}
.ws12{word-spacing:-0.056000pt;}
.ws16{word-spacing:-0.050400pt;}
.ws5{word-spacing:0.000000pt;}
.ws8{word-spacing:208.503877pt;}
.ws9{word-spacing:222.148428pt;}
.ws7{word-spacing:260.765614pt;}
.ws14{word-spacing:267.207040pt;}
.ws6{word-spacing:273.031259pt;}
.wsa{word-spacing:335.515610pt;}
.wsc{word-spacing:352.011703pt;}
.wsd{word-spacing:402.761702pt;}
.wsb{word-spacing:405.605451pt;}
.wse{word-spacing:474.718750pt;}
.ws29{word-spacing:1963.422772pt;}
.ws19{word-spacing:2263.035062pt;}
.ws1c{word-spacing:2270.335843pt;}
.ws1b{word-spacing:2316.150294pt;}
.ws15{word-spacing:2354.828027pt;}
.ws1a{word-spacing:2422.421774pt;}
.ws10{word-spacing:2430.337789pt;}
._2e{margin-left:-3.562500pt;}
._b{margin-left:-1.961914pt;}
._d{width:12.039060pt;}
._34{width:31.785153pt;}
._6{width:117.777338pt;}
._9{width:154.691398pt;}
._18{width:160.695307pt;}
._19{width:167.550775pt;}
._3{width:172.847629pt;}
._1a{width:174.281244pt;}
._8{width:179.191398pt;}
._14{width:192.359367pt;}
._5{width:214.035147pt;}
._15{width:231.234366pt;}
._f{width:234.304678pt;}
._25{width:264.937510pt;}
._16{width:269.984364pt;}
._13{width:270.933580pt;}
._11{width:288.574207pt;}
._27{width:296.957040pt;}
._1c{width:308.675769pt;}
._10{width:310.531237pt;}
._1f{width:317.410163pt;}
._2a{width:328.976569pt;}
._20{width:344.999966pt;}
._12{width:348.488267pt;}
._1b{width:355.617171pt;}
._23{width:375.898402pt;}
._22{width:407.917972pt;}
._24{width:436.249980pt;}
._2b{width:437.917949pt;}
._28{width:448.746074pt;}
._26{width:468.570291pt;}
._29{width:470.238260pt;}
._4{width:478.140585pt;}
._2{width:489.265624pt;}
._21{width:507.289041pt;}
._a{width:519.328103pt;}
._e{width:595.640600pt;}
._17{width:613.113254pt;}
._1e{width:717.781221pt;}
._33{width:800.951137pt;}
._2f{width:845.514612pt;}
._c{width:1198.515576pt;}
._38{width:1300.234321pt;}
._3b{width:1327.304629pt;}
._3c{width:1339.650334pt;}
._39{width:1345.146429pt;}
._0{width:1530.372984pt;}
._7{width:1629.705985pt;}
._32{width:1634.388603pt;}
._37{width:1815.390550pt;}
._35{width:1844.511641pt;}
._1{width:1928.251874pt;}
._2d{width:1962.370033pt;}
._1d{width:1970.737223pt;}
._36{width:1998.183510pt;}
._30{width:2110.456943pt;}
._3a{width:2124.826081pt;}
._31{width:2172.759673pt;}
._2c{width:2358.881737pt;}
.fs4{font-size:47.999998pt;}
.fs3{font-size:50.399999pt;}
.fs1{font-size:55.999998pt;}
.fs6{font-size:69.999997pt;}
.fs5{font-size:83.999997pt;}
.fs2{font-size:97.999996pt;}
.fs0{font-size:125.999995pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:0.111875pt;}
.y124{bottom:7.000000pt;}
.y142{bottom:8.000000pt;}
.y1be{bottom:12.999999pt;}
.ya5{bottom:14.999999pt;}
.y155{bottom:19.999999pt;}
.y6e{bottom:22.999999pt;}
.y103{bottom:23.999999pt;}
.y123{bottom:26.999999pt;}
.y20{bottom:27.328124pt;}
.y2f{bottom:27.999999pt;}
.y192{bottom:29.999999pt;}
.y1d0{bottom:30.999999pt;}
.yc4{bottom:33.999999pt;}
.ydf{bottom:34.999999pt;}
.y1bd{bottom:35.999998pt;}
.y2e{bottom:38.999998pt;}
.y102{bottom:43.999998pt;}
.y17d{bottom:44.999998pt;}
.y6d{bottom:45.999998pt;}
.y148{bottom:46.999998pt;}
.y122{bottom:47.999998pt;}
.ya4{bottom:48.999998pt;}
.y8c{bottom:49.999998pt;}
.yde{bottom:54.999998pt;}
.y136{bottom:56.999998pt;}
.y1{bottom:59.840044pt;}
.y191{bottom:59.999997pt;}
.y1cf{bottom:60.999997pt;}
.yc3{bottom:62.999997pt;}
.y101{bottom:64.999997pt;}
.y147{bottom:66.999997pt;}
.y121{bottom:67.999997pt;}
.y1bc{bottom:68.999997pt;}
.ya3{bottom:70.999997pt;}
.y8b{bottom:72.999997pt;}
.ydd{bottom:74.999997pt;}
.y135{bottom:78.999997pt;}
.y6c{bottom:81.999997pt;}
.y154{bottom:82.999997pt;}
.y2d{bottom:84.999996pt;}
.yc2{bottom:85.999996pt;}
.y146{bottom:86.999996pt;}
.y120{bottom:87.999996pt;}
.y17c{bottom:89.999996pt;}
.y1bb{bottom:91.999996pt;}
.ydc{bottom:94.999996pt;}
.y105{bottom:97.999996pt;}
.y1ac{bottom:100.999996pt;}
.y134{bottom:101.999996pt;}
.y100{bottom:104.999996pt;}
.y16a{bottom:105.999996pt;}
.y143{bottom:106.840042pt;}
.y2b{bottom:107.999995pt;}
.y8a{bottom:108.999995pt;}
.y190{bottom:110.999995pt;}
.y6b{bottom:111.999995pt;}
.yc1{bottom:114.999995pt;}
.y153{bottom:116.999995pt;}
.y8f{bottom:117.999995pt;}
.y17b{bottom:118.999995pt;}
.y104{bottom:119.999995pt;}
.y1ba{bottom:120.999995pt;}
.y1ab{bottom:122.999995pt;}
.yff{bottom:124.999995pt;}
.y11f{bottom:127.999995pt;}
.y2c{bottom:129.999995pt;}
.y1e{bottom:132.999994pt;}
.y133{bottom:134.999994pt;}
.y19b{bottom:137.999994pt;}
.ydb{bottom:138.999994pt;}
.y18f{bottom:140.999994pt;}
.y1b9{bottom:142.999994pt;}
.y89{bottom:144.999994pt;}
.y152{bottom:145.999994pt;}
.y6a{bottom:147.999994pt;}
.yc0{bottom:148.999994pt;}
.y169{bottom:150.999994pt;}
.y8e{bottom:152.999994pt;}
.y1d{bottom:154.999994pt;}
.yda{bottom:160.999993pt;}
.yfe{bottom:164.999993pt;}
.y2a{bottom:165.999993pt;}
.y88{bottom:167.999993pt;}
.y141{bottom:168.999993pt;}
.y18e{bottom:169.999993pt;}
.ybf{bottom:170.999993pt;}
.y168{bottom:172.999993pt;}
.y151{bottom:174.999993pt;}
.y28{bottom:176.999993pt;}
.y1c{bottom:177.999993pt;}
.y69{bottom:181.999992pt;}
.yfd{bottom:184.999992pt;}
.y27{bottom:187.999992pt;}
.y140{bottom:188.999992pt;}
.y132{bottom:194.999992pt;}
.yd9{bottom:197.999992pt;}
.y1b{bottom:199.999992pt;}
.y68{bottom:203.999991pt;}
.ybe{bottom:204.999991pt;}
.yfc{bottom:205.999991pt;}
.y145{bottom:207.999991pt;}
.y11e{bottom:208.999991pt;}
.y29{bottom:209.999991pt;}
.y131{bottom:216.999991pt;}
.y106{bottom:217.840038pt;}
.y167{bottom:217.999991pt;}
.y1a{bottom:221.999991pt;}
.y8d{bottom:223.999991pt;}
.y1b8{bottom:224.999991pt;}
.yfb{bottom:225.999991pt;}
.y67{bottom:226.999991pt;}
.y144{bottom:227.999990pt;}
.y11d{bottom:228.999990pt;}
.y150{bottom:230.999990pt;}
.y17a{bottom:233.999990pt;}
.y18d{bottom:236.999990pt;}
.ybd{bottom:237.999990pt;}
.y166{bottom:239.999990pt;}
.y87{bottom:240.999990pt;}
.y25{bottom:245.999990pt;}
.y11c{bottom:248.999990pt;}
.y130{bottom:250.999990pt;}
.y14f{bottom:253.999989pt;}
.y1de{bottom:254.999989pt;}
.y19{bottom:255.999989pt;}
.y26{bottom:256.999989pt;}
.y1b7{bottom:257.999989pt;}
.y18c{bottom:259.999989pt;}
.ybc{bottom:260.999989pt;}
.y66{bottom:262.999989pt;}
.y1ce{bottom:263.999989pt;}
.yfa{bottom:265.999989pt;}
.y179{bottom:266.999989pt;}
.y24{bottom:267.999989pt;}
.y11b{bottom:268.999989pt;}
.y86{bottom:269.999989pt;}
.yd8{bottom:274.999989pt;}
.y18{bottom:278.999988pt;}
.ybb{bottom:282.999988pt;}
.y12f{bottom:283.999988pt;}
.yf9{bottom:285.999988pt;}
.y1cd{bottom:286.999988pt;}
.y11a{bottom:288.999988pt;}
.y23{bottom:289.999988pt;}
.y14e{bottom:290.999988pt;}
.y1b6{bottom:291.999988pt;}
.y18b{bottom:294.999988pt;}
.y1dd{bottom:298.999988pt;}
.y165{bottom:299.999987pt;}
.y19a{bottom:301.999987pt;}
.y65{bottom:302.999987pt;}
.ya2{bottom:303.999987pt;}
.yba{bottom:304.999987pt;}
.y85{bottom:305.999987pt;}
.y12e{bottom:306.999987pt;}
.y1aa{bottom:307.999987pt;}
.y119{bottom:308.999987pt;}
.y17{bottom:312.999987pt;}
.y178{bottom:322.999987pt;}
.y199{bottom:324.999986pt;}
.y22{bottom:325.999986pt;}
.yb9{bottom:327.999986pt;}
.y118{bottom:328.999986pt;}
.y13e{bottom:330.999986pt;}
.yd7{bottom:333.999986pt;}
.y16{bottom:334.999986pt;}
.y1a9{bottom:336.999986pt;}
.y84{bottom:342.999986pt;}
.y1dc{bottom:344.999986pt;}
.yf8{bottom:345.999986pt;}
.y198{bottom:346.999986pt;}
.y21{bottom:347.999985pt;}
.y64{bottom:348.999985pt;}
.y117{bottom:349.999985pt;}
.y12d{bottom:351.999985pt;}
.y13d{bottom:352.999985pt;}
.ya1{bottom:359.999985pt;}
.yb8{bottom:360.999985pt;}
.yd6{bottom:362.999985pt;}
.y83{bottom:364.999985pt;}
.yf7{bottom:366.999985pt;}
.y177{bottom:367.999985pt;}
.y15{bottom:368.999985pt;}
.y116{bottom:369.999985pt;}
.y14d{bottom:370.999985pt;}
.y12c{bottom:373.999984pt;}
.y1db{bottom:377.999984pt;}
.y63{bottom:378.999984pt;}
.ya0{bottom:382.999984pt;}
.yf6{bottom:386.999984pt;}
.y115{bottom:389.999984pt;}
.y197{bottom:391.999984pt;}
.yd5{bottom:392.999984pt;}
.y48{bottom:393.999984pt;}
.yb7{bottom:394.999984pt;}
.y1a8{bottom:395.999983pt;}
.y82{bottom:401.999983pt;}
.y14{bottom:402.999983pt;}
.yf5{bottom:406.999983pt;}
.y12b{bottom:407.999983pt;}
.y18a{bottom:408.999983pt;}
.y114{bottom:409.999983pt;}
.y14c{bottom:414.999983pt;}
.y47{bottom:416.999983pt;}
.y9f{bottom:417.999983pt;}
.y13c{bottom:419.999982pt;}
.yd4{bottom:421.999982pt;}
.y176{bottom:423.999982pt;}
.y13{bottom:424.999982pt;}
.yf4{bottom:426.999982pt;}
.yb6{bottom:428.999982pt;}
.y113{bottom:429.999982pt;}
.y62{bottom:432.999982pt;}
.y1cc{bottom:434.999982pt;}
.y1da{bottom:435.999982pt;}
.y81{bottom:437.999982pt;}
.y189{bottom:445.999981pt;}
.yf3{bottom:446.999981pt;}
.y12{bottom:447.999981pt;}
.y1b5{bottom:448.999981pt;}
.y46{bottom:449.999981pt;}
.y164{bottom:450.999981pt;}
.y61{bottom:454.999981pt;}
.yd3{bottom:455.999981pt;}
.y1cb{bottom:456.999981pt;}
.y9e{bottom:457.999981pt;}
.y1d9{bottom:458.999981pt;}
.y80{bottom:459.999981pt;}
.y5e{bottom:465.999981pt;}
.yf2{bottom:466.999981pt;}
.y11{bottom:469.999980pt;}
.y12a{bottom:470.999980pt;}
.y45{bottom:472.999980pt;}
.y60{bottom:477.999980pt;}
.y1ca{bottom:478.999980pt;}
.yb5{bottom:479.999980pt;}
.y14b{bottom:481.999980pt;}
.y9d{bottom:486.999980pt;}
.yd2{bottom:488.999980pt;}
.y188{bottom:489.999980pt;}
.y112{bottom:490.999980pt;}
.y44{bottom:494.999979pt;}
.y163{bottom:495.999979pt;}
.y7f{bottom:496.999979pt;}
.y5f{bottom:499.999979pt;}
.y1c9{bottom:501.999979pt;}
.y10{bottom:503.999979pt;}
.y129{bottom:505.999979pt;}
.y175{bottom:506.999979pt;}
.yf1{bottom:507.999979pt;}
.y9c{bottom:508.999979pt;}
.yb4{bottom:509.999979pt;}
.yd1{bottom:510.999979pt;}
.y187{bottom:511.999979pt;}
.y13f{bottom:517.840025pt;}
.y43{bottom:517.999978pt;}
.y1d8{bottom:525.999978pt;}
.yf{bottom:526.999978pt;}
.yf0{bottom:527.999978pt;}
.y111{bottom:530.999978pt;}
.yb3{bottom:531.999978pt;}
.y7e{bottom:532.999978pt;}
.y14a{bottom:533.999978pt;}
.y5d{bottom:534.999978pt;}
.y9b{bottom:538.999978pt;}
.yd0{bottom:540.999977pt;}
.y186{bottom:545.999977pt;}
.y196{bottom:546.999977pt;}
.yef{bottom:547.999977pt;}
.y174{bottom:549.999977pt;}
.y42{bottom:550.999977pt;}
.y162{bottom:551.999977pt;}
.y149{bottom:555.999977pt;}
.y5c{bottom:557.999977pt;}
.y9a{bottom:560.999977pt;}
.ycf{bottom:562.999977pt;}
.ye{bottom:563.999977pt;}
.yb2{bottom:565.999976pt;}
.y1a7{bottom:566.999976pt;}
.yee{bottom:567.999976pt;}
.y59{bottom:568.999976pt;}
.y7d{bottom:569.999976pt;}
.y110{bottom:570.999976pt;}
.y41{bottom:573.999976pt;}
.y185{bottom:574.999976pt;}
.y1e2{bottom:576.999976pt;}
.y173{bottom:578.999976pt;}
.y5b{bottom:579.999976pt;}
.y1c8{bottom:586.999976pt;}
.yb1{bottom:587.999975pt;}
.y1a6{bottom:588.999975pt;}
.y99{bottom:590.999975pt;}
.yce{bottom:592.999975pt;}
.y40{bottom:595.999975pt;}
.y184{bottom:597.999975pt;}
.y195{bottom:598.999975pt;}
.y1b4{bottom:600.999975pt;}
.y172{bottom:601.999975pt;}
.y5a{bottom:602.999975pt;}
.y7c{bottom:605.999975pt;}
.yd{bottom:607.999975pt;}
.y1c7{bottom:609.999975pt;}
.y10f{bottom:610.999975pt;}
.y1a5{bottom:611.999974pt;}
.y98{bottom:612.999974pt;}
.ycd{bottom:614.999974pt;}
.y1d7{bottom:615.999974pt;}
.y3f{bottom:617.999974pt;}
.yb0{bottom:621.999974pt;}
.y171{bottom:623.999974pt;}
.y183{bottom:626.999974pt;}
.y7b{bottom:627.999974pt;}
.y1b3{bottom:629.999974pt;}
.yc{bottom:630.999974pt;}
.y10e{bottom:631.999974pt;}
.y161{bottom:632.999974pt;}
.y1a4{bottom:633.999974pt;}
.y56{bottom:637.999973pt;}
.y1e1{bottom:639.999973pt;}
.y1c6{bottom:642.999973pt;}
.y58{bottom:648.999973pt;}
.y128{bottom:649.999973pt;}
.y7a{bottom:650.999973pt;}
.y3e{bottom:651.999973pt;}
.y1b2{bottom:652.999973pt;}
.y156{bottom:653.840020pt;}
.yaf{bottom:654.999973pt;}
.y170{bottom:657.999973pt;}
.y55{bottom:659.999972pt;}
.y182{bottom:660.999972pt;}
.yb{bottom:663.999972pt;}
.y1c5{bottom:665.999972pt;}
.y1a3{bottom:667.999972pt;}
.yed{bottom:668.999972pt;}
.ycc{bottom:670.999972pt;}
.y52{bottom:671.999972pt;}
.y1d6{bottom:672.999972pt;}
.y3d{bottom:673.999972pt;}
.y160{bottom:676.999972pt;}
.yae{bottom:677.999972pt;}
.y1b1{bottom:681.999972pt;}
.y54{bottom:682.999972pt;}
.y194{bottom:683.999972pt;}
.y79{bottom:686.999971pt;}
.y1c4{bottom:687.999971pt;}
.yec{bottom:688.999971pt;}
.y1a2{bottom:689.999971pt;}
.y16f{bottom:690.999971pt;}
.y10d{bottom:691.999971pt;}
.y57{bottom:693.999971pt;}
.y127{bottom:694.999971pt;}
.y3c{bottom:696.999971pt;}
.ya{bottom:697.999971pt;}
.y15f{bottom:698.999971pt;}
.yad{bottom:699.999971pt;}
.y53{bottom:704.999971pt;}
.ycb{bottom:706.999971pt;}
.y97{bottom:707.999970pt;}
.yeb{bottom:708.999970pt;}
.y1d5{bottom:709.999970pt;}
.y10c{bottom:711.999970pt;}
.y181{bottom:716.999970pt;}
.y3b{bottom:718.999970pt;}
.y16e{bottom:720.999970pt;}
.yac{bottom:721.999970pt;}
.y78{bottom:722.999970pt;}
.y1a1{bottom:723.999970pt;}
.yea{bottom:728.999970pt;}
.y96{bottom:729.999970pt;}
.y9{bottom:730.999970pt;}
.y10b{bottom:731.999969pt;}
.y15e{bottom:732.999969pt;}
.y1b0{bottom:733.999969pt;}
.y51{bottom:739.999969pt;}
.y3a{bottom:740.999969pt;}
.y193{bottom:741.999969pt;}
.y1e0{bottom:744.999969pt;}
.yca{bottom:745.999969pt;}
.ye9{bottom:748.999969pt;}
.y16d{bottom:749.999969pt;}
.y1c3{bottom:750.999969pt;}
.y50{bottom:751.999969pt;}
.y77{bottom:752.999969pt;}
.y180{bottom:753.999969pt;}
.y15d{bottom:754.999969pt;}
.y1af{bottom:755.999968pt;}
.y1a0{bottom:756.999968pt;}
.y39{bottom:763.999968pt;}
.y8{bottom:764.999968pt;}
.y95{bottom:766.999968pt;}
.yc9{bottom:767.999968pt;}
.yab{bottom:768.999968pt;}
.y10a{bottom:772.999968pt;}
.y126{bottom:774.999968pt;}
.y15c{bottom:776.999968pt;}
.y16c{bottom:778.999968pt;}
.y1c2{bottom:779.999967pt;}
.y76{bottom:781.999967pt;}
.y13b{bottom:782.999967pt;}
.y38{bottom:785.999967pt;}
.ye8{bottom:789.999967pt;}
.y109{bottom:792.999967pt;}
.y17f{bottom:796.999967pt;}
.y7{bottom:797.999967pt;}
.yc8{bottom:801.999967pt;}
.y94{bottom:802.999967pt;}
.yaa{bottom:803.999966pt;}
.y1d4{bottom:804.999966pt;}
.y37{bottom:808.999966pt;}
.ye7{bottom:809.999966pt;}
.y15b{bottom:810.999966pt;}
.y108{bottom:812.999966pt;}
.y13a{bottom:816.999966pt;}
.y75{bottom:818.999966pt;}
.y4e{bottom:820.999966pt;}
.yc7{bottom:823.999966pt;}
.y93{bottom:825.999966pt;}
.y1d3{bottom:827.999965pt;}
.ye6{bottom:829.999965pt;}
.y36{bottom:830.999965pt;}
.y6{bottom:831.999965pt;}
.y107{bottom:832.999965pt;}
.ya9{bottom:838.999965pt;}
.y15a{bottom:839.999965pt;}
.y74{bottom:840.999965pt;}
.y125{bottom:841.999965pt;}
.y4f{bottom:842.999965pt;}
.y1ae{bottom:845.999965pt;}
.y19f{bottom:846.999965pt;}
.ye5{bottom:849.999965pt;}
.y1d2{bottom:850.999965pt;}
.y35{bottom:852.999964pt;}
.y5{bottom:853.999964pt;}
.y92{bottom:861.999964pt;}
.y17e{bottom:864.999964pt;}
.y1c1{bottom:865.999964pt;}
.y73{bottom:869.999964pt;}
.y139{bottom:871.999964pt;}
.y159{bottom:873.999964pt;}
.ya8{bottom:874.999964pt;}
.y34{bottom:875.999963pt;}
.y4{bottom:876.999963pt;}
.y4d{bottom:877.999963pt;}
.y19e{bottom:879.999963pt;}
.y1ad{bottom:880.999963pt;}
.y91{bottom:883.999963pt;}
.y16b{bottom:886.999963pt;}
.y1d1{bottom:887.999963pt;}
.ye4{bottom:889.999963pt;}
.y1df{bottom:890.999963pt;}
.y33{bottom:897.999963pt;}
.y3{bottom:898.999963pt;}
.y4b{bottom:900.999962pt;}
.y138{bottom:905.999962pt;}
.y72{bottom:906.999962pt;}
.y158{bottom:907.999962pt;}
.ya7{bottom:909.999962pt;}
.y19d{bottom:913.999962pt;}
.y32{bottom:920.999962pt;}
.y1c0{bottom:921.999962pt;}
.y4c{bottom:922.999962pt;}
.y137{bottom:927.999961pt;}
.y71{bottom:928.999961pt;}
.ye3{bottom:930.999961pt;}
.yc6{bottom:931.999961pt;}
.y19c{bottom:935.999961pt;}
.y31{bottom:942.999961pt;}
.y1bf{bottom:943.999961pt;}
.y157{bottom:944.999961pt;}
.ya6{bottom:945.999961pt;}
.ye2{bottom:950.999960pt;}
.y70{bottom:951.999960pt;}
.yc5{bottom:953.999960pt;}
.y2{bottom:956.999960pt;}
.y4a{bottom:958.999960pt;}
.y90{bottom:965.999960pt;}
.ye1{bottom:970.999960pt;}
.y30{bottom:979.999959pt;}
.y49{bottom:980.999959pt;}
.y6f{bottom:987.999959pt;}
.ye0{bottom:990.999959pt;}
.h9{height:34.945311pt;}
.h13{height:37.357031pt;}
.h7{height:39.473437pt;}
.h5{height:42.546873pt;}
.h4{height:42.847654pt;}
.h11{height:53.559568pt;}
.h18{height:59.964841pt;}
.h8{height:61.328122pt;}
.h10{height:64.271482pt;}
.hf{height:69.958981pt;}
.h6{height:74.983395pt;}
.he{height:76.753903pt;}
.hb{height:86.847653pt;}
.hd{height:90.847652pt;}
.h3{height:96.407223pt;}
.h12{height:107.999995pt;}
.ha{height:130.847651pt;}
.hc{height:134.847651pt;}
.h16{height:261.999989pt;}
.h17{height:281.999988pt;}
.h15{height:302.999987pt;}
.h14{height:845.999965pt;}
.h2{height:1003.999958pt;}
.h0{height:1123.840000pt;}
.h1{height:1124.000000pt;}
.w3{width:624.999974pt;}
.w2{width:664.999972pt;}
.w0{width:794.559973pt;}
.w1{width:794.666667pt;}
.x0{left:0.000000pt;}
.x10{left:10.828125pt;}
.xf{left:18.421874pt;}
.xe{left:41.999998pt;}
.x1{left:61.999997pt;}
.xd{left:62.999997pt;}
.x2{left:64.999997pt;}
.x5{left:75.999997pt;}
.x3{left:80.999997pt;}
.x11{left:83.999997pt;}
.x14{left:86.624996pt;}
.xb{left:101.999996pt;}
.x13{left:102.999996pt;}
.xc{left:120.999995pt;}
.x15{left:141.999994pt;}
.x16{left:181.999992pt;}
.x8{left:201.953122pt;}
.x6{left:335.421866pt;}
.x12{left:379.140614pt;}
.x4{left:382.484364pt;}
.x9{left:458.593731pt;}
.x7{left:583.624976pt;}
.xa{left:731.999970pt;}
}




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