
    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_9509b386581e90df70d4961b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_c3a38b11c27ffa58377c5c5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_627cd031f6e6348ac361b031.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_b99d29675a13756e9efed13b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.992000;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_e54c3b2aa7b98bc1a2b12ee9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.982000;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_a9840a5f0d74703454ee33f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.915000;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_0b490420208c64260f9cd949.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.743000;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_30aac5641bab8cb945f931e8.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.100098;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_3b1ce4c640733a4a21769b07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.781250;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_3ebf2e5756b2ab775c0b379f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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_112d00959a33b4bb9f376ecf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.915000;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_30aac5641bab8cb945f931e8.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.100098;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_0b490420208c64260f9cd949.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.743000;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_3ebf2e5756b2ab775c0b379f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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_7a669859a26645e2c751311a.woff2')format("woff");}.fff{font-family:fff;line-height:0.915000;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_13fc794075621fc44b857e09.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.915000;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_0b490420208c64260f9cd949.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.743000;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_30aac5641bab8cb945f931e8.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;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_3ebf2e5756b2ab775c0b379f.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.100098;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:ff14;src:url('chunks/assets/font_112d00959a33b4bb9f376ecf.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.915000;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:ff15;src:url('chunks/assets/font_30aac5641bab8cb945f931e8.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.100098;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:ff16;src:url('chunks/assets/font_0b490420208c64260f9cd949.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.743000;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:ff17;src:url('chunks/assets/font_3ebf2e5756b2ab775c0b379f.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.100098;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:ff18;src:url('chunks/assets/font_7a669859a26645e2c751311a.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.915000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:11.637000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.648000px;}
.ls6{letter-spacing:1.620000px;}
.ls2{letter-spacing:3.352800px;}
.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;}
}
.ws5{word-spacing:-9.720000px;}
.wse{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws1{word-spacing:-7.920000px;}
.ws11{word-spacing:-1.620000px;}
.ws6{word-spacing:-1.260000px;}
.ws9{word-spacing:-1.020000px;}
.ws10{word-spacing:-0.648000px;}
.wsf{word-spacing:-0.432000px;}
.ws3{word-spacing:-0.048000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.720000px;}
.wsd{word-spacing:1.980000px;}
.ws7{word-spacing:3.360000px;}
.ws8{word-spacing:9.480000px;}
.wsb{word-spacing:76.677000px;}
.wsa{word-spacing:77.845200px;}
.ws4{word-spacing:86.082000px;}
._11{margin-left:-6.600000px;}
._13{margin-left:-5.310000px;}
._d{margin-left:-4.116000px;}
._5{margin-left:-2.457000px;}
._0{margin-left:-1.360800px;}
._2{width:1.171800px;}
._1{width:2.241000px;}
._4{width:3.979800px;}
._3{width:5.227200px;}
._6{width:6.955200px;}
._b{width:8.236800px;}
._15{width:10.611000px;}
._c{width:11.712000px;}
._a{width:13.542000px;}
._12{width:14.784000px;}
._e{width:15.840000px;}
._9{width:16.974000px;}
._14{width:18.078000px;}
._10{width:19.725600px;}
._f{width:21.406800px;}
._7{width:29.148000px;}
._16{width:34.954200px;}
._8{width:1337.568600px;}
.fc8{color:rgb(101,151,45);}
.fc7{color:rgb(53,145,165);}
.fc5{color:rgb(64,172,173);}
.fc4{color:rgb(254,255,253);}
.fc3{color:rgb(103,104,102);}
.fc1{color:rgb(224,63,93);}
.fc9{color:rgb(46,46,46);}
.fc6{color:rgb(46,46,46);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:120.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y29{bottom:25.267500px;}
.y4a{bottom:27.364200px;}
.y2a{bottom:28.176750px;}
.y27{bottom:39.330750px;}
.y1f{bottom:42.238500px;}
.y131{bottom:65.624250px;}
.y9c{bottom:68.128200px;}
.yf3{bottom:74.128200px;}
.yc0{bottom:75.120300px;}
.yd0{bottom:80.128200px;}
.y1e{bottom:80.690550px;}
.y130{bottom:83.624250px;}
.y9b{bottom:86.128200px;}
.y49{bottom:86.648100px;}
.y143{bottom:89.145150px;}
.yf2{bottom:92.128200px;}
.y72{bottom:92.128350px;}
.ybf{bottom:93.120300px;}
.y1d{bottom:96.890550px;}
.ycf{bottom:98.128200px;}
.y142{bottom:103.713900px;}
.y190{bottom:103.956600px;}
.y120{bottom:104.128350px;}
.y48{bottom:104.648100px;}
.yf1{bottom:110.128200px;}
.y71{bottom:110.128350px;}
.ybe{bottom:111.120300px;}
.y1c{bottom:113.090400px;}
.y12f{bottom:113.624250px;}
.y9a{bottom:116.128200px;}
.y169{bottom:118.525200px;}
.y18f{bottom:118.525350px;}
.y11f{bottom:122.128350px;}
.y47{bottom:122.648100px;}
.yf0{bottom:128.128200px;}
.y70{bottom:128.128350px;}
.ybd{bottom:129.120300px;}
.y1b{bottom:129.290400px;}
.y141{bottom:130.282650px;}
.y12e{bottom:131.624250px;}
.y168{bottom:133.093950px;}
.y99{bottom:134.128200px;}
.y11e{bottom:140.128350px;}
.y46{bottom:140.648100px;}
.y140{bottom:144.851400px;}
.y18e{bottom:145.094100px;}
.y1a{bottom:145.490550px;}
.yef{bottom:146.128200px;}
.y6f{bottom:146.128350px;}
.ybc{bottom:147.120300px;}
.y12d{bottom:149.624250px;}
.y98{bottom:152.128200px;}
.y11d{bottom:158.128350px;}
.y45{bottom:158.648100px;}
.y167{bottom:159.662700px;}
.y18d{bottom:159.662850px;}
.y19{bottom:161.690550px;}
.yce{bottom:164.128200px;}
.y6e{bottom:164.128350px;}
.ybb{bottom:165.120300px;}
.y12c{bottom:167.624250px;}
.y97{bottom:170.128200px;}
.y13f{bottom:171.420150px;}
.y166{bottom:174.231450px;}
.yee{bottom:176.128200px;}
.y11c{bottom:176.128350px;}
.y44{bottom:176.648100px;}
.y18{bottom:177.890550px;}
.ycd{bottom:182.128200px;}
.y6d{bottom:182.128350px;}
.y12b{bottom:185.624250px;}
.y13e{bottom:185.988900px;}
.y18c{bottom:186.231600px;}
.y96{bottom:188.128200px;}
.y165{bottom:188.800200px;}
.y17{bottom:194.090400px;}
.y11b{bottom:194.128350px;}
.y43{bottom:194.648100px;}
.yba{bottom:195.120300px;}
.ycc{bottom:200.128200px;}
.y6c{bottom:200.128350px;}
.y18b{bottom:200.800350px;}
.y12a{bottom:203.624250px;}
.y95{bottom:206.128200px;}
.y16{bottom:210.290400px;}
.y11a{bottom:212.128350px;}
.y13d{bottom:212.557650px;}
.y42{bottom:212.648100px;}
.yb9{bottom:213.120300px;}
.y164{bottom:215.368950px;}
.ycb{bottom:218.128200px;}
.y129{bottom:221.624250px;}
.yed{bottom:224.128200px;}
.y15{bottom:226.490550px;}
.y13c{bottom:227.126400px;}
.y18a{bottom:227.369100px;}
.y163{bottom:229.937700px;}
.y6b{bottom:230.128350px;}
.y41{bottom:230.648100px;}
.yb8{bottom:231.120300px;}
.y94{bottom:236.128200px;}
.y128{bottom:239.624250px;}
.y189{bottom:241.937850px;}
.yec{bottom:242.128200px;}
.y119{bottom:242.128350px;}
.y14{bottom:242.690550px;}
.y162{bottom:244.506450px;}
.y6a{bottom:248.128350px;}
.yb7{bottom:249.120300px;}
.y13b{bottom:253.695150px;}
.y93{bottom:254.128200px;}
.y13{bottom:258.890550px;}
.y161{bottom:259.075200px;}
.yeb{bottom:260.128200px;}
.y118{bottom:260.128350px;}
.y40{bottom:260.648100px;}
.yca{bottom:266.128200px;}
.y69{bottom:266.128350px;}
.yb6{bottom:267.120300px;}
.y13a{bottom:268.263900px;}
.y188{bottom:268.506600px;}
.y127{bottom:269.624250px;}
.y92{bottom:272.128200px;}
.y12{bottom:275.090550px;}
.yea{bottom:278.128200px;}
.y117{bottom:278.128350px;}
.y3f{bottom:278.648100px;}
.y187{bottom:283.075350px;}
.yc9{bottom:284.128200px;}
.yb5{bottom:285.120300px;}
.y160{bottom:285.643950px;}
.y91{bottom:290.128200px;}
.y139{bottom:294.832650px;}
.ye9{bottom:296.128200px;}
.y68{bottom:296.128350px;}
.y3e{bottom:296.648100px;}
.y15f{bottom:300.212700px;}
.yc8{bottom:302.128200px;}
.yb4{bottom:303.120300px;}
.y11{bottom:307.490550px;}
.y126{bottom:308.128200px;}
.y186{bottom:309.644100px;}
.ye8{bottom:314.128200px;}
.y116{bottom:314.128350px;}
.y3d{bottom:314.648100px;}
.y15e{bottom:314.781450px;}
.y90{bottom:320.128200px;}
.yb3{bottom:321.120300px;}
.y138{bottom:321.401400px;}
.y125{bottom:326.128200px;}
.y67{bottom:326.128350px;}
.y115{bottom:332.128350px;}
.y3c{bottom:332.648100px;}
.y137{bottom:335.970150px;}
.y185{bottom:336.212850px;}
.y8f{bottom:338.128200px;}
.yb2{bottom:339.120300px;}
.y15d{bottom:341.350200px;}
.ye7{bottom:344.128200px;}
.y66{bottom:344.128350px;}
.y10{bottom:346.094850px;}
.y114{bottom:350.128350px;}
.y15c{bottom:355.918950px;}
.y8e{bottom:356.128200px;}
.y135{bottom:361.936650px;}
.ye6{bottom:362.128200px;}
.y65{bottom:362.128350px;}
.y136{bottom:362.538900px;}
.y3b{bottom:362.648100px;}
.y184{bottom:362.781600px;}
.y113{bottom:368.128350px;}
.yb1{bottom:369.120300px;}
.y8d{bottom:374.128200px;}
.yf{bottom:379.394850px;}
.ye5{bottom:380.128200px;}
.y64{bottom:380.128350px;}
.y3a{bottom:380.648100px;}
.y15b{bottom:382.487700px;}
.y112{bottom:386.128350px;}
.y183{bottom:389.350350px;}
.y8c{bottom:392.128200px;}
.ye{bottom:395.594850px;}
.y15a{bottom:397.056450px;}
.ye4{bottom:398.128200px;}
.y63{bottom:398.128350px;}
.y39{bottom:398.648100px;}
.yb0{bottom:399.120300px;}
.y182{bottom:403.919100px;}
.y8b{bottom:410.128200px;}
.yd{bottom:411.794850px;}
.ye3{bottom:416.128200px;}
.y62{bottom:416.128350px;}
.y38{bottom:416.648100px;}
.yfe{bottom:422.128200px;}
.y159{bottom:423.625200px;}
.yc{bottom:427.994850px;}
.y8a{bottom:428.128200px;}
.y181{bottom:430.487850px;}
.ye2{bottom:434.128200px;}
.y61{bottom:434.128350px;}
.y37{bottom:434.648100px;}
.yaf{bottom:437.624250px;}
.y158{bottom:438.193950px;}
.yfd{bottom:440.128200px;}
.yb{bottom:444.194850px;}
.y180{bottom:445.056600px;}
.y89{bottom:446.128200px;}
.ye1{bottom:452.128200px;}
.y60{bottom:452.128350px;}
.y36{bottom:452.648100px;}
.yae{bottom:455.624250px;}
.yfc{bottom:458.128200px;}
.y17f{bottom:459.625350px;}
.ya{bottom:460.394850px;}
.y88{bottom:464.128200px;}
.y157{bottom:464.762700px;}
.ye0{bottom:470.128200px;}
.y111{bottom:470.128350px;}
.y35{bottom:470.648100px;}
.yad{bottom:473.624250px;}
.yc7{bottom:476.128200px;}
.y9{bottom:476.594850px;}
.y124{bottom:482.128200px;}
.y5f{bottom:482.128350px;}
.y17e{bottom:486.194100px;}
.ydf{bottom:488.128200px;}
.y110{bottom:488.128350px;}
.y34{bottom:488.648100px;}
.y156{bottom:491.331450px;}
.y8{bottom:492.794850px;}
.y87{bottom:494.128200px;}
.y123{bottom:500.128200px;}
.y5e{bottom:500.128350px;}
.y17d{bottom:500.762850px;}
.yac{bottom:503.624250px;}
.y155{bottom:505.900200px;}
.yde{bottom:506.128200px;}
.y10f{bottom:506.128350px;}
.y33{bottom:506.648100px;}
.y7{bottom:508.994850px;}
.y86{bottom:512.128200px;}
.y122{bottom:518.128200px;}
.y5d{bottom:518.128350px;}
.yab{bottom:521.624250px;}
.ydd{bottom:524.128200px;}
.y10e{bottom:524.128350px;}
.y32{bottom:524.648100px;}
.y6{bottom:525.194850px;}
.y17c{bottom:527.331600px;}
.y85{bottom:530.128200px;}
.y154{bottom:532.468950px;}
.y121{bottom:536.128200px;}
.y5c{bottom:536.128350px;}
.yaa{bottom:539.624250px;}
.y5{bottom:541.394850px;}
.y17b{bottom:541.900350px;}
.ydc{bottom:542.128200px;}
.y31{bottom:542.648100px;}
.y153{bottom:547.037700px;}
.y84{bottom:548.128200px;}
.yfb{bottom:554.128200px;}
.y5b{bottom:554.128350px;}
.y4{bottom:557.594850px;}
.ya9{bottom:557.624250px;}
.yc6{bottom:560.128200px;}
.y83{bottom:566.128200px;}
.y17a{bottom:568.469100px;}
.ydb{bottom:572.128200px;}
.y5a{bottom:572.128350px;}
.y30{bottom:572.648100px;}
.y152{bottom:573.606450px;}
.y3{bottom:573.794850px;}
.ya8{bottom:575.624250px;}
.yc5{bottom:578.128200px;}
.y179{bottom:583.037850px;}
.y82{bottom:584.128200px;}
.y151{bottom:588.175200px;}
.y2{bottom:589.994850px;}
.yfa{bottom:590.128200px;}
.y10d{bottom:590.128350px;}
.y2f{bottom:590.648100px;}
.ya7{bottom:593.624250px;}
.yc4{bottom:596.128200px;}
.yda{bottom:602.128200px;}
.y59{bottom:602.128350px;}
.yf9{bottom:608.128200px;}
.y10c{bottom:608.128350px;}
.y2e{bottom:608.648100px;}
.y178{bottom:609.606600px;}
.ya6{bottom:611.624250px;}
.y81{bottom:614.128200px;}
.y150{bottom:614.743950px;}
.yd9{bottom:620.128200px;}
.y58{bottom:620.128350px;}
.y1{bottom:622.394850px;}
.y177{bottom:624.175350px;}
.yf8{bottom:626.128200px;}
.y10b{bottom:626.128350px;}
.y2d{bottom:626.648100px;}
.y14f{bottom:629.312700px;}
.ya5{bottom:629.624250px;}
.yc3{bottom:632.128200px;}
.yd8{bottom:638.128200px;}
.y57{bottom:638.128350px;}
.y176{bottom:638.744100px;}
.y80{bottom:644.128200px;}
.y10a{bottom:644.128350px;}
.y2c{bottom:644.648100px;}
.y14e{bottom:655.881450px;}
.yd7{bottom:656.128200px;}
.y56{bottom:656.128350px;}
.ya4{bottom:659.624250px;}
.y21{bottom:661.112100px;}
.y7f{bottom:662.128200px;}
.y109{bottom:662.128350px;}
.y175{bottom:665.312850px;}
.yd6{bottom:674.128200px;}
.y2b{bottom:674.648100px;}
.ya3{bottom:677.624250px;}
.y174{bottom:679.881600px;}
.y7e{bottom:680.128200px;}
.y108{bottom:680.128350px;}
.y14d{bottom:682.450200px;}
.y23{bottom:683.378250px;}
.y134{bottom:686.128200px;}
.y55{bottom:686.128350px;}
.yc2{bottom:692.128200px;}
.ya2{bottom:695.624250px;}
.y22{bottom:695.978250px;}
.y7d{bottom:698.128200px;}
.y107{bottom:698.128350px;}
.y133{bottom:704.128200px;}
.y54{bottom:704.128350px;}
.y173{bottom:706.450350px;}
.y14c{bottom:709.018950px;}
.yc1{bottom:710.128200px;}
.ya1{bottom:713.624250px;}
.yf7{bottom:716.128200px;}
.y106{bottom:716.128350px;}
.y20{bottom:718.372200px;}
.yd5{bottom:722.128200px;}
.y53{bottom:722.128350px;}
.y14b{bottom:723.587700px;}
.y7c{bottom:728.128200px;}
.ya0{bottom:731.624250px;}
.y172{bottom:733.019100px;}
.yf6{bottom:734.128200px;}
.yd4{bottom:740.128200px;}
.y52{bottom:740.128350px;}
.y7b{bottom:746.128200px;}
.y105{bottom:746.128350px;}
.y171{bottom:747.587850px;}
.y14a{bottom:750.156450px;}
.y132{bottom:752.128200px;}
.yd3{bottom:758.128200px;}
.y51{bottom:758.128350px;}
.y26{bottom:758.406600px;}
.y9f{bottom:761.624250px;}
.y170{bottom:762.156600px;}
.y7a{bottom:764.128200px;}
.y104{bottom:764.128350px;}
.y149{bottom:764.725200px;}
.yd2{bottom:776.128200px;}
.y79{bottom:782.128200px;}
.y103{bottom:782.128350px;}
.y50{bottom:788.128350px;}
.y16f{bottom:788.725350px;}
.y148{bottom:791.293950px;}
.yd1{bottom:794.128200px;}
.y25{bottom:794.406600px;}
.y9e{bottom:800.128200px;}
.y102{bottom:800.128350px;}
.y16e{bottom:803.294100px;}
.y147{bottom:805.862700px;}
.y4f{bottom:806.128350px;}
.y78{bottom:812.128200px;}
.y194{bottom:814.815600px;}
.y16d{bottom:817.862850px;}
.y9d{bottom:818.128200px;}
.y101{bottom:818.128350px;}
.y4e{bottom:824.128350px;}
.y77{bottom:830.128200px;}
.y24{bottom:830.406600px;}
.y146{bottom:832.431450px;}
.y16c{bottom:832.431600px;}
.yf5{bottom:836.128200px;}
.y100{bottom:836.128350px;}
.y193{bottom:841.384350px;}
.y4d{bottom:842.128350px;}
.y76{bottom:848.128200px;}
.yf4{bottom:854.128200px;}
.yff{bottom:854.128350px;}
.y192{bottom:855.953100px;}
.y145{bottom:859.000200px;}
.y16b{bottom:859.000350px;}
.y75{bottom:866.128200px;}
.y191{bottom:870.521850px;}
.y4c{bottom:872.128350px;}
.y144{bottom:873.568950px;}
.y16a{bottom:873.569100px;}
.y74{bottom:884.128200px;}
.y73{bottom:902.128200px;}
.y4b{bottom:902.128350px;}
.y28{bottom:965.135850px;}
.h7{height:38.052000px;}
.h5{height:38.496000px;}
.ha{height:39.690000px;}
.hd{height:39.945112px;}
.hb{height:43.195312px;}
.h10{height:43.308000px;}
.h6{height:43.488000px;}
.h12{height:43.902000px;}
.h11{height:45.714000px;}
.h4{height:46.227000px;}
.hc{height:46.875000px;}
.he{height:48.120000px;}
.h2{height:48.780000px;}
.h3{height:48.924000px;}
.hf{height:54.360000px;}
.h8{height:101.052000px;}
.h9{height:108.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.xe{left:13.181100px;}
.x1d{left:67.056750px;}
.xd{left:69.107400px;}
.xb{left:77.171100px;}
.x13{left:85.464600px;}
.x2{left:106.299150px;}
.x15{left:127.564350px;}
.x9{left:133.936950px;}
.xc{left:168.377850px;}
.xf{left:170.078700px;}
.x1e{left:187.086600px;}
.x8{left:194.324250px;}
.x1a{left:199.842600px;}
.x16{left:210.897600px;}
.x10{left:212.603700px;}
.x1b{left:242.367600px;}
.xa{left:285.232200px;}
.x5{left:321.097650px;}
.x6{left:332.550900px;}
.x4{left:352.394250px;}
.x7{left:375.193050px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x11{left:413.253600px;}
.x19{left:479.388450px;}
.x14{left:492.583050px;}
.x18{left:504.032550px;}
.x1c{left:652.386300px;}
.x17{left:726.349650px;}
.x12{left:728.400450px;}
@media print{
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:10.344000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.576000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls2{letter-spacing:2.980267pt;}
.ws5{word-spacing:-8.640000pt;}
.wse{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws11{word-spacing:-1.440000pt;}
.ws6{word-spacing:-1.120000pt;}
.ws9{word-spacing:-0.906667pt;}
.ws10{word-spacing:-0.576000pt;}
.wsf{word-spacing:-0.384000pt;}
.ws3{word-spacing:-0.042667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.640000pt;}
.wsd{word-spacing:1.760000pt;}
.ws7{word-spacing:2.986667pt;}
.ws8{word-spacing:8.426667pt;}
.wsb{word-spacing:68.157333pt;}
.wsa{word-spacing:69.195733pt;}
.ws4{word-spacing:76.517333pt;}
._11{margin-left:-5.866667pt;}
._13{margin-left:-4.720000pt;}
._d{margin-left:-3.658667pt;}
._5{margin-left:-2.184000pt;}
._0{margin-left:-1.209600pt;}
._2{width:1.041600pt;}
._1{width:1.992000pt;}
._4{width:3.537600pt;}
._3{width:4.646400pt;}
._6{width:6.182400pt;}
._b{width:7.321600pt;}
._15{width:9.432000pt;}
._c{width:10.410667pt;}
._a{width:12.037333pt;}
._12{width:13.141333pt;}
._e{width:14.080000pt;}
._9{width:15.088000pt;}
._14{width:16.069333pt;}
._10{width:17.533867pt;}
._f{width:19.028267pt;}
._7{width:25.909333pt;}
._16{width:31.070400pt;}
._8{width:1188.949867pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:106.666667pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y29{bottom:22.460000pt;}
.y4a{bottom:24.323733pt;}
.y2a{bottom:25.046000pt;}
.y27{bottom:34.960667pt;}
.y1f{bottom:37.545333pt;}
.y131{bottom:58.332667pt;}
.y9c{bottom:60.558400pt;}
.yf3{bottom:65.891733pt;}
.yc0{bottom:66.773600pt;}
.yd0{bottom:71.225067pt;}
.y1e{bottom:71.724933pt;}
.y130{bottom:74.332667pt;}
.y9b{bottom:76.558400pt;}
.y49{bottom:77.020533pt;}
.y143{bottom:79.240133pt;}
.yf2{bottom:81.891733pt;}
.y72{bottom:81.891867pt;}
.ybf{bottom:82.773600pt;}
.y1d{bottom:86.124933pt;}
.ycf{bottom:87.225067pt;}
.y142{bottom:92.190133pt;}
.y190{bottom:92.405867pt;}
.y120{bottom:92.558533pt;}
.y48{bottom:93.020533pt;}
.yf1{bottom:97.891733pt;}
.y71{bottom:97.891867pt;}
.ybe{bottom:98.773600pt;}
.y1c{bottom:100.524800pt;}
.y12f{bottom:100.999333pt;}
.y9a{bottom:103.225067pt;}
.y169{bottom:105.355733pt;}
.y18f{bottom:105.355867pt;}
.y11f{bottom:108.558533pt;}
.y47{bottom:109.020533pt;}
.yf0{bottom:113.891733pt;}
.y70{bottom:113.891867pt;}
.ybd{bottom:114.773600pt;}
.y1b{bottom:114.924800pt;}
.y141{bottom:115.806800pt;}
.y12e{bottom:116.999333pt;}
.y168{bottom:118.305733pt;}
.y99{bottom:119.225067pt;}
.y11e{bottom:124.558533pt;}
.y46{bottom:125.020533pt;}
.y140{bottom:128.756800pt;}
.y18e{bottom:128.972533pt;}
.y1a{bottom:129.324933pt;}
.yef{bottom:129.891733pt;}
.y6f{bottom:129.891867pt;}
.ybc{bottom:130.773600pt;}
.y12d{bottom:132.999333pt;}
.y98{bottom:135.225067pt;}
.y11d{bottom:140.558533pt;}
.y45{bottom:141.020533pt;}
.y167{bottom:141.922400pt;}
.y18d{bottom:141.922533pt;}
.y19{bottom:143.724933pt;}
.yce{bottom:145.891733pt;}
.y6e{bottom:145.891867pt;}
.ybb{bottom:146.773600pt;}
.y12c{bottom:148.999333pt;}
.y97{bottom:151.225067pt;}
.y13f{bottom:152.373467pt;}
.y166{bottom:154.872400pt;}
.yee{bottom:156.558400pt;}
.y11c{bottom:156.558533pt;}
.y44{bottom:157.020533pt;}
.y18{bottom:158.124933pt;}
.ycd{bottom:161.891733pt;}
.y6d{bottom:161.891867pt;}
.y12b{bottom:164.999333pt;}
.y13e{bottom:165.323467pt;}
.y18c{bottom:165.539200pt;}
.y96{bottom:167.225067pt;}
.y165{bottom:167.822400pt;}
.y17{bottom:172.524800pt;}
.y11b{bottom:172.558533pt;}
.y43{bottom:173.020533pt;}
.yba{bottom:173.440267pt;}
.ycc{bottom:177.891733pt;}
.y6c{bottom:177.891867pt;}
.y18b{bottom:178.489200pt;}
.y12a{bottom:180.999333pt;}
.y95{bottom:183.225067pt;}
.y16{bottom:186.924800pt;}
.y11a{bottom:188.558533pt;}
.y13d{bottom:188.940133pt;}
.y42{bottom:189.020533pt;}
.yb9{bottom:189.440267pt;}
.y164{bottom:191.439067pt;}
.ycb{bottom:193.891733pt;}
.y129{bottom:196.999333pt;}
.yed{bottom:199.225067pt;}
.y15{bottom:201.324933pt;}
.y13c{bottom:201.890133pt;}
.y18a{bottom:202.105867pt;}
.y163{bottom:204.389067pt;}
.y6b{bottom:204.558533pt;}
.y41{bottom:205.020533pt;}
.yb8{bottom:205.440267pt;}
.y94{bottom:209.891733pt;}
.y128{bottom:212.999333pt;}
.y189{bottom:215.055867pt;}
.yec{bottom:215.225067pt;}
.y119{bottom:215.225200pt;}
.y14{bottom:215.724933pt;}
.y162{bottom:217.339067pt;}
.y6a{bottom:220.558533pt;}
.yb7{bottom:221.440267pt;}
.y13b{bottom:225.506800pt;}
.y93{bottom:225.891733pt;}
.y13{bottom:230.124933pt;}
.y161{bottom:230.289067pt;}
.yeb{bottom:231.225067pt;}
.y118{bottom:231.225200pt;}
.y40{bottom:231.687200pt;}
.yca{bottom:236.558400pt;}
.y69{bottom:236.558533pt;}
.yb6{bottom:237.440267pt;}
.y13a{bottom:238.456800pt;}
.y188{bottom:238.672533pt;}
.y127{bottom:239.666000pt;}
.y92{bottom:241.891733pt;}
.y12{bottom:244.524933pt;}
.yea{bottom:247.225067pt;}
.y117{bottom:247.225200pt;}
.y3f{bottom:247.687200pt;}
.y187{bottom:251.622533pt;}
.yc9{bottom:252.558400pt;}
.yb5{bottom:253.440267pt;}
.y160{bottom:253.905733pt;}
.y91{bottom:257.891733pt;}
.y139{bottom:262.073467pt;}
.ye9{bottom:263.225067pt;}
.y68{bottom:263.225200pt;}
.y3e{bottom:263.687200pt;}
.y15f{bottom:266.855733pt;}
.yc8{bottom:268.558400pt;}
.yb4{bottom:269.440267pt;}
.y11{bottom:273.324933pt;}
.y126{bottom:273.891733pt;}
.y186{bottom:275.239200pt;}
.ye8{bottom:279.225067pt;}
.y116{bottom:279.225200pt;}
.y3d{bottom:279.687200pt;}
.y15e{bottom:279.805733pt;}
.y90{bottom:284.558400pt;}
.yb3{bottom:285.440267pt;}
.y138{bottom:285.690133pt;}
.y125{bottom:289.891733pt;}
.y67{bottom:289.891867pt;}
.y115{bottom:295.225200pt;}
.y3c{bottom:295.687200pt;}
.y137{bottom:298.640133pt;}
.y185{bottom:298.855867pt;}
.y8f{bottom:300.558400pt;}
.yb2{bottom:301.440267pt;}
.y15d{bottom:303.422400pt;}
.ye7{bottom:305.891733pt;}
.y66{bottom:305.891867pt;}
.y10{bottom:307.639867pt;}
.y114{bottom:311.225200pt;}
.y15c{bottom:316.372400pt;}
.y8e{bottom:316.558400pt;}
.y135{bottom:321.721467pt;}
.ye6{bottom:321.891733pt;}
.y65{bottom:321.891867pt;}
.y136{bottom:322.256800pt;}
.y3b{bottom:322.353867pt;}
.y184{bottom:322.472533pt;}
.y113{bottom:327.225200pt;}
.yb1{bottom:328.106933pt;}
.y8d{bottom:332.558400pt;}
.yf{bottom:337.239867pt;}
.ye5{bottom:337.891733pt;}
.y64{bottom:337.891867pt;}
.y3a{bottom:338.353867pt;}
.y15b{bottom:339.989067pt;}
.y112{bottom:343.225200pt;}
.y183{bottom:346.089200pt;}
.y8c{bottom:348.558400pt;}
.ye{bottom:351.639867pt;}
.y15a{bottom:352.939067pt;}
.ye4{bottom:353.891733pt;}
.y63{bottom:353.891867pt;}
.y39{bottom:354.353867pt;}
.yb0{bottom:354.773600pt;}
.y182{bottom:359.039200pt;}
.y8b{bottom:364.558400pt;}
.yd{bottom:366.039867pt;}
.ye3{bottom:369.891733pt;}
.y62{bottom:369.891867pt;}
.y38{bottom:370.353867pt;}
.yfe{bottom:375.225067pt;}
.y159{bottom:376.555733pt;}
.yc{bottom:380.439867pt;}
.y8a{bottom:380.558400pt;}
.y181{bottom:382.655867pt;}
.ye2{bottom:385.891733pt;}
.y61{bottom:385.891867pt;}
.y37{bottom:386.353867pt;}
.yaf{bottom:388.999333pt;}
.y158{bottom:389.505733pt;}
.yfd{bottom:391.225067pt;}
.yb{bottom:394.839867pt;}
.y180{bottom:395.605867pt;}
.y89{bottom:396.558400pt;}
.ye1{bottom:401.891733pt;}
.y60{bottom:401.891867pt;}
.y36{bottom:402.353867pt;}
.yae{bottom:404.999333pt;}
.yfc{bottom:407.225067pt;}
.y17f{bottom:408.555867pt;}
.ya{bottom:409.239867pt;}
.y88{bottom:412.558400pt;}
.y157{bottom:413.122400pt;}
.ye0{bottom:417.891733pt;}
.y111{bottom:417.891867pt;}
.y35{bottom:418.353867pt;}
.yad{bottom:420.999333pt;}
.yc7{bottom:423.225067pt;}
.y9{bottom:423.639867pt;}
.y124{bottom:428.558400pt;}
.y5f{bottom:428.558533pt;}
.y17e{bottom:432.172533pt;}
.ydf{bottom:433.891733pt;}
.y110{bottom:433.891867pt;}
.y34{bottom:434.353867pt;}
.y156{bottom:436.739067pt;}
.y8{bottom:438.039867pt;}
.y87{bottom:439.225067pt;}
.y123{bottom:444.558400pt;}
.y5e{bottom:444.558533pt;}
.y17d{bottom:445.122533pt;}
.yac{bottom:447.666000pt;}
.y155{bottom:449.689067pt;}
.yde{bottom:449.891733pt;}
.y10f{bottom:449.891867pt;}
.y33{bottom:450.353867pt;}
.y7{bottom:452.439867pt;}
.y86{bottom:455.225067pt;}
.y122{bottom:460.558400pt;}
.y5d{bottom:460.558533pt;}
.yab{bottom:463.666000pt;}
.ydd{bottom:465.891733pt;}
.y10e{bottom:465.891867pt;}
.y32{bottom:466.353867pt;}
.y6{bottom:466.839867pt;}
.y17c{bottom:468.739200pt;}
.y85{bottom:471.225067pt;}
.y154{bottom:473.305733pt;}
.y121{bottom:476.558400pt;}
.y5c{bottom:476.558533pt;}
.yaa{bottom:479.666000pt;}
.y5{bottom:481.239867pt;}
.y17b{bottom:481.689200pt;}
.ydc{bottom:481.891733pt;}
.y31{bottom:482.353867pt;}
.y153{bottom:486.255733pt;}
.y84{bottom:487.225067pt;}
.yfb{bottom:492.558400pt;}
.y5b{bottom:492.558533pt;}
.y4{bottom:495.639867pt;}
.ya9{bottom:495.666000pt;}
.yc6{bottom:497.891733pt;}
.y83{bottom:503.225067pt;}
.y17a{bottom:505.305867pt;}
.ydb{bottom:508.558400pt;}
.y5a{bottom:508.558533pt;}
.y30{bottom:509.020533pt;}
.y152{bottom:509.872400pt;}
.y3{bottom:510.039867pt;}
.ya8{bottom:511.666000pt;}
.yc5{bottom:513.891733pt;}
.y179{bottom:518.255867pt;}
.y82{bottom:519.225067pt;}
.y151{bottom:522.822400pt;}
.y2{bottom:524.439867pt;}
.yfa{bottom:524.558400pt;}
.y10d{bottom:524.558533pt;}
.y2f{bottom:525.020533pt;}
.ya7{bottom:527.666000pt;}
.yc4{bottom:529.891733pt;}
.yda{bottom:535.225067pt;}
.y59{bottom:535.225200pt;}
.yf9{bottom:540.558400pt;}
.y10c{bottom:540.558533pt;}
.y2e{bottom:541.020533pt;}
.y178{bottom:541.872533pt;}
.ya6{bottom:543.666000pt;}
.y81{bottom:545.891733pt;}
.y150{bottom:546.439067pt;}
.yd9{bottom:551.225067pt;}
.y58{bottom:551.225200pt;}
.y1{bottom:553.239867pt;}
.y177{bottom:554.822533pt;}
.yf8{bottom:556.558400pt;}
.y10b{bottom:556.558533pt;}
.y2d{bottom:557.020533pt;}
.y14f{bottom:559.389067pt;}
.ya5{bottom:559.666000pt;}
.yc3{bottom:561.891733pt;}
.yd8{bottom:567.225067pt;}
.y57{bottom:567.225200pt;}
.y176{bottom:567.772533pt;}
.y80{bottom:572.558400pt;}
.y10a{bottom:572.558533pt;}
.y2c{bottom:573.020533pt;}
.y14e{bottom:583.005733pt;}
.yd7{bottom:583.225067pt;}
.y56{bottom:583.225200pt;}
.ya4{bottom:586.332667pt;}
.y21{bottom:587.655200pt;}
.y7f{bottom:588.558400pt;}
.y109{bottom:588.558533pt;}
.y175{bottom:591.389200pt;}
.yd6{bottom:599.225067pt;}
.y2b{bottom:599.687200pt;}
.ya3{bottom:602.332667pt;}
.y174{bottom:604.339200pt;}
.y7e{bottom:604.558400pt;}
.y108{bottom:604.558533pt;}
.y14d{bottom:606.622400pt;}
.y23{bottom:607.447333pt;}
.y134{bottom:609.891733pt;}
.y55{bottom:609.891867pt;}
.yc2{bottom:615.225067pt;}
.ya2{bottom:618.332667pt;}
.y22{bottom:618.647333pt;}
.y7d{bottom:620.558400pt;}
.y107{bottom:620.558533pt;}
.y133{bottom:625.891733pt;}
.y54{bottom:625.891867pt;}
.y173{bottom:627.955867pt;}
.y14c{bottom:630.239067pt;}
.yc1{bottom:631.225067pt;}
.ya1{bottom:634.332667pt;}
.yf7{bottom:636.558400pt;}
.y106{bottom:636.558533pt;}
.y20{bottom:638.553067pt;}
.yd5{bottom:641.891733pt;}
.y53{bottom:641.891867pt;}
.y14b{bottom:643.189067pt;}
.y7c{bottom:647.225067pt;}
.ya0{bottom:650.332667pt;}
.y172{bottom:651.572533pt;}
.yf6{bottom:652.558400pt;}
.yd4{bottom:657.891733pt;}
.y52{bottom:657.891867pt;}
.y7b{bottom:663.225067pt;}
.y105{bottom:663.225200pt;}
.y171{bottom:664.522533pt;}
.y14a{bottom:666.805733pt;}
.y132{bottom:668.558400pt;}
.yd3{bottom:673.891733pt;}
.y51{bottom:673.891867pt;}
.y26{bottom:674.139200pt;}
.y9f{bottom:676.999333pt;}
.y170{bottom:677.472533pt;}
.y7a{bottom:679.225067pt;}
.y104{bottom:679.225200pt;}
.y149{bottom:679.755733pt;}
.yd2{bottom:689.891733pt;}
.y79{bottom:695.225067pt;}
.y103{bottom:695.225200pt;}
.y50{bottom:700.558533pt;}
.y16f{bottom:701.089200pt;}
.y148{bottom:703.372400pt;}
.yd1{bottom:705.891733pt;}
.y25{bottom:706.139200pt;}
.y9e{bottom:711.225067pt;}
.y102{bottom:711.225200pt;}
.y16e{bottom:714.039200pt;}
.y147{bottom:716.322400pt;}
.y4f{bottom:716.558533pt;}
.y78{bottom:721.891733pt;}
.y194{bottom:724.280533pt;}
.y16d{bottom:726.989200pt;}
.y9d{bottom:727.225067pt;}
.y101{bottom:727.225200pt;}
.y4e{bottom:732.558533pt;}
.y77{bottom:737.891733pt;}
.y24{bottom:738.139200pt;}
.y146{bottom:739.939067pt;}
.y16c{bottom:739.939200pt;}
.yf5{bottom:743.225067pt;}
.y100{bottom:743.225200pt;}
.y193{bottom:747.897200pt;}
.y4d{bottom:748.558533pt;}
.y76{bottom:753.891733pt;}
.yf4{bottom:759.225067pt;}
.yff{bottom:759.225200pt;}
.y192{bottom:760.847200pt;}
.y145{bottom:763.555733pt;}
.y16b{bottom:763.555867pt;}
.y75{bottom:769.891733pt;}
.y191{bottom:773.797200pt;}
.y4c{bottom:775.225200pt;}
.y144{bottom:776.505733pt;}
.y16a{bottom:776.505867pt;}
.y74{bottom:785.891733pt;}
.y73{bottom:801.891733pt;}
.y4b{bottom:801.891867pt;}
.y28{bottom:857.898533pt;}
.h7{height:33.824000pt;}
.h5{height:34.218667pt;}
.ha{height:35.280000pt;}
.hd{height:35.506767pt;}
.hb{height:38.395833pt;}
.h10{height:38.496000pt;}
.h6{height:38.656000pt;}
.h12{height:39.024000pt;}
.h11{height:40.634667pt;}
.h4{height:41.090667pt;}
.hc{height:41.666667pt;}
.he{height:42.773333pt;}
.h2{height:43.360000pt;}
.h3{height:43.488000pt;}
.hf{height:48.320000pt;}
.h8{height:89.824000pt;}
.h9{height:96.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.xe{left:11.716533pt;}
.x1d{left:59.606000pt;}
.xd{left:61.428800pt;}
.xb{left:68.596533pt;}
.x13{left:75.968533pt;}
.x2{left:94.488133pt;}
.x15{left:113.390533pt;}
.x9{left:119.055067pt;}
.xc{left:149.669200pt;}
.xf{left:151.181067pt;}
.x1e{left:166.299200pt;}
.x8{left:172.732667pt;}
.x1a{left:177.637867pt;}
.x16{left:187.464533pt;}
.x10{left:188.981067pt;}
.x1b{left:215.437867pt;}
.xa{left:253.539733pt;}
.x5{left:285.420133pt;}
.x6{left:295.600800pt;}
.x4{left:313.239333pt;}
.x7{left:333.504933pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x11{left:367.336533pt;}
.x19{left:426.123067pt;}
.x14{left:437.851600pt;}
.x18{left:448.028933pt;}
.x1c{left:579.898933pt;}
.x17{left:645.644133pt;}
.x12{left:647.467067pt;}
}




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