
    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_f69a232e92e1142512125f9b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_a87618d246272b435e66016e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.961000;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_74b287d9123d8fed36bfa5d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_7118b14c5f0f810a44738566.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_5d5907e4ccf16de826061e19.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_8d14974bdcf08a54d2370c1e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_653d4b9dff06429b8702a89a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_2425523da7b37b4a794df41f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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_b93d771b4a9672c6d7e65a77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.874023;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_bb60ee35d4977aa6cd222905.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;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_9c09e41ebcdf81b24b91b8ca.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.971191;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_648a08dc1a58a36cff68a608.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_2a5b2f19c6d995520037e53c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.024902;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_342bbc84f416f5134220bc76.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.971191;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_4de0386eb0efa32f10c705be.woff2')format("woff");}.fff{font-family:fff;line-height:0.986816;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_127fe11767e21623f1133eba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.024902;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_127fe11767e21623f1133eba.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.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);}
.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);}
.m2{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;}
.ls4{letter-spacing:-4.092000px;}
.ls8{letter-spacing:-3.510000px;}
.ls5{letter-spacing:-2.262000px;}
.ls3{letter-spacing:-1.170000px;}
.ls6{letter-spacing:-0.660000px;}
.ls9{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.108000px;}
.ls2{letter-spacing:24.480000px;}
.ls1{letter-spacing:45.672000px;}
.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;}
}
.ws3{word-spacing:-45.672000px;}
.ws4{word-spacing:-24.480000px;}
.ws7{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.wsb{word-spacing:-14.256000px;}
.wsa{word-spacing:-13.560000px;}
.wsf{word-spacing:-12.312000px;}
.ws6{word-spacing:-12.204000px;}
.ws8{word-spacing:-10.824000px;}
.ws1{word-spacing:0.000000px;}
.ws10{word-spacing:0.270000px;}
.wsc{word-spacing:0.660000px;}
.ws5{word-spacing:1.092000px;}
.ws9{word-spacing:2.184000px;}
.wsd{word-spacing:3.402000px;}
.wse{word-spacing:3.432000px;}
._f{margin-left:-26.516400px;}
._10{margin-left:-15.674400px;}
._1b{margin-left:-13.230000px;}
._12{margin-left:-12.189600px;}
._1a{margin-left:-7.756800px;}
._11{margin-left:-6.711600px;}
._16{margin-left:-5.568000px;}
._c{margin-left:-4.435200px;}
._e{margin-left:-3.254400px;}
._d{margin-left:-1.465200px;}
._a{width:1.385992px;}
._3{width:2.870984px;}
._6{width:4.124977px;}
._13{width:5.369484px;}
._4{width:7.193961px;}
._14{width:8.342400px;}
._9{width:10.262944px;}
._18{width:11.913000px;}
._8{width:13.265928px;}
._2{width:15.377916px;}
._15{width:17.272200px;}
._19{width:18.400800px;}
._5{width:20.492888px;}
._17{width:21.740400px;}
._1{width:28.313846px;}
._7{width:33.164819px;}
._b{width:45.209753px;}
._0{width:820.875237px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc4{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:32.999820px;}
.fse{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs7{font-size:42.428340px;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fs10{font-size:54.000000px;}
.fs13{font-size:60.000000px;}
.fs0{font-size:65.999640px;}
.fsb{font-size:66.000000px;}
.fs11{font-size:72.000000px;}
.fsd{font-size:78.000000px;}
.fs12{font-size:90.000000px;}
.fsc{font-size:114.000000px;}
.fsf{font-size:126.000000px;}
.fs8{font-size:252.000000px;}
.fsa{font-size:288.000000px;}
.fs9{font-size:519.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y37{bottom:46.346400px;}
.y21{bottom:50.265797px;}
.y20{bottom:63.630724px;}
.y1f{bottom:76.995651px;}
.y1e{bottom:90.360579px;}
.y1d{bottom:101.780873px;}
.y36{bottom:102.047250px;}
.ybd{bottom:102.157350px;}
.y100{bottom:102.569100px;}
.y97{bottom:102.820950px;}
.y72{bottom:103.476600px;}
.y13f{bottom:103.650600px;}
.y117{bottom:105.005100px;}
.y4b{bottom:108.186000px;}
.ye1{bottom:109.554900px;}
.y13e{bottom:119.999100px;}
.ybc{bottom:122.864850px;}
.yff{bottom:123.276600px;}
.y96{bottom:123.363450px;}
.y1c{bottom:123.419327px;}
.y71{bottom:124.184100px;}
.y4a{bottom:124.386000px;}
.y116{bottom:125.547600px;}
.ye0{bottom:128.604900px;}
.y13d{bottom:136.347600px;}
.y22{bottom:136.778700px;}
.y49{bottom:140.586000px;}
.y29{bottom:142.439400px;}
.ybb{bottom:143.572350px;}
.y95{bottom:143.905950px;}
.yfe{bottom:143.984100px;}
.y70{bottom:144.809100px;}
.y115{bottom:146.090100px;}
.ydf{bottom:147.654900px;}
.y13c{bottom:152.696100px;}
.y48{bottom:156.786000px;}
.yba{bottom:164.279850px;}
.y94{bottom:164.382450px;}
.yfd{bottom:164.691600px;}
.y6f{bottom:165.434100px;}
.y114{bottom:166.632600px;}
.yde{bottom:166.704900px;}
.y13b{bottom:169.044600px;}
.y47{bottom:172.986000px;}
.y1b{bottom:179.601520px;}
.y28{bottom:184.431900px;}
.y93{bottom:184.858950px;}
.yb9{bottom:184.987350px;}
.y13a{bottom:185.393100px;}
.yfc{bottom:185.399100px;}
.ydd{bottom:185.754900px;}
.y6e{bottom:186.059100px;}
.y113{bottom:187.340100px;}
.y46{bottom:189.186000px;}
.y1a{bottom:189.619323px;}
.y19{bottom:198.812130px;}
.y139{bottom:201.741600px;}
.ydc{bottom:204.804900px;}
.y92{bottom:205.335450px;}
.y45{bottom:205.386000px;}
.y27{bottom:205.436400px;}
.yb8{bottom:205.694850px;}
.yfb{bottom:206.106600px;}
.y6d{bottom:206.684100px;}
.y18{bottom:207.156370px;}
.y112{bottom:208.047600px;}
.y180{bottom:215.449500px;}
.y17{bottom:215.512396px;}
.y138{bottom:218.090100px;}
.y44{bottom:221.586000px;}
.y16{bottom:223.868422px;}
.y91{bottom:225.811950px;}
.yb7{bottom:226.402350px;}
.y26{bottom:226.440900px;}
.yfa{bottom:226.814100px;}
.y6c{bottom:227.309100px;}
.y111{bottom:228.755100px;}
.y15{bottom:232.212662px;}
.ydb{bottom:232.581600px;}
.y17f{bottom:233.931000px;}
.y137{bottom:234.438600px;}
.y43{bottom:237.786000px;}
.y14{bottom:240.568688px;}
.y90{bottom:246.288450px;}
.yb6{bottom:247.109850px;}
.yf9{bottom:247.521600px;}
.y6b{bottom:247.934100px;}
.y13{bottom:248.924714px;}
.y110{bottom:249.462600px;}
.y17e{bottom:250.279500px;}
.y136{bottom:250.787100px;}
.yda{bottom:253.289100px;}
.y42{bottom:253.986000px;}
.y12{bottom:257.268954px;}
.y11{bottom:265.624980px;}
.y17d{bottom:266.628000px;}
.y8f{bottom:266.764950px;}
.y135{bottom:267.135600px;}
.yb5{bottom:267.817350px;}
.yf8{bottom:268.229100px;}
.y6a{bottom:268.559100px;}
.y10f{bottom:270.170100px;}
.y10{bottom:273.981006px;}
.yd9{bottom:273.996600px;}
.y17c{bottom:282.976500px;}
.y134{bottom:283.484100px;}
.y35{bottom:284.420700px;}
.y8e{bottom:287.241450px;}
.yb4{bottom:288.524850px;}
.yf7{bottom:288.936600px;}
.y69{bottom:289.184100px;}
.y10e{bottom:290.877600px;}
.yf{bottom:291.164483px;}
.yd8{bottom:294.704100px;}
.y17b{bottom:299.325000px;}
.y133{bottom:299.832600px;}
.y34{bottom:305.425200px;}
.y8d{bottom:307.717950px;}
.yb3{bottom:309.232350px;}
.yf6{bottom:309.644100px;}
.y68{bottom:309.809100px;}
.y10d{bottom:311.585100px;}
.yd7{bottom:315.411600px;}
.y17a{bottom:315.673500px;}
.y132{bottom:316.181100px;}
.y33{bottom:326.429700px;}
.y8c{bottom:328.194450px;}
.yb2{bottom:329.939850px;}
.yf5{bottom:330.351600px;}
.y67{bottom:330.434100px;}
.y179{bottom:332.022000px;}
.y10c{bottom:332.292600px;}
.y131{bottom:332.529600px;}
.yd6{bottom:336.119100px;}
.y32{bottom:347.434200px;}
.y178{bottom:348.370500px;}
.y8b{bottom:348.670950px;}
.y130{bottom:348.878100px;}
.yb1{bottom:350.647350px;}
.yf4{bottom:350.894100px;}
.y66{bottom:351.059100px;}
.y10b{bottom:353.000100px;}
.yd5{bottom:356.826600px;}
.y177{bottom:364.719000px;}
.y12f{bottom:365.226600px;}
.y31{bottom:368.438700px;}
.y8a{bottom:369.147450px;}
.yb0{bottom:371.354850px;}
.yf3{bottom:371.436600px;}
.y65{bottom:371.684100px;}
.y10a{bottom:373.707600px;}
.yd4{bottom:377.534100px;}
.y12e{bottom:381.575100px;}
.y30{bottom:389.443200px;}
.y89{bottom:389.623950px;}
.yf2{bottom:391.979100px;}
.yaf{bottom:392.062350px;}
.y64{bottom:392.309100px;}
.y176{bottom:393.825000px;}
.y109{bottom:394.415100px;}
.y12d{bottom:397.923600px;}
.yd3{bottom:398.241600px;}
.ye{bottom:398.885324px;}
.y88{bottom:410.100450px;}
.y2f{bottom:410.447700px;}
.y175{bottom:412.306500px;}
.yf1{bottom:412.521600px;}
.yae{bottom:412.769850px;}
.y63{bottom:412.934100px;}
.y12c{bottom:414.272100px;}
.y108{bottom:415.122600px;}
.y159{bottom:418.320450px;}
.yd2{bottom:418.949100px;}
.y174{bottom:428.655000px;}
.y87{bottom:430.576950px;}
.y12b{bottom:430.620600px;}
.y2e{bottom:431.452200px;}
.yf0{bottom:433.064100px;}
.yad{bottom:433.477350px;}
.y62{bottom:433.559100px;}
.y158{bottom:434.668950px;}
.y107{bottom:435.830100px;}
.yd1{bottom:439.656600px;}
.y173{bottom:445.003500px;}
.y12a{bottom:446.969100px;}
.y157{bottom:451.017450px;}
.y86{bottom:451.053450px;}
.y2d{bottom:452.456700px;}
.yef{bottom:453.606600px;}
.y61{bottom:454.184100px;}
.yac{bottom:454.184850px;}
.y106{bottom:456.537600px;}
.yd0{bottom:460.364100px;}
.y172{bottom:461.352000px;}
.y129{bottom:463.317600px;}
.y85{bottom:471.529950px;}
.yee{bottom:474.149100px;}
.y60{bottom:474.809100px;}
.yab{bottom:474.892350px;}
.y105{bottom:477.245100px;}
.y171{bottom:477.700500px;}
.ycf{bottom:481.071600px;}
.y156{bottom:485.225850px;}
.y84{bottom:492.006450px;}
.y170{bottom:494.049000px;}
.yed{bottom:494.691600px;}
.y5f{bottom:495.434100px;}
.yaa{bottom:495.599850px;}
.y128{bottom:497.525850px;}
.y104{bottom:497.952600px;}
.y41{bottom:499.792350px;}
.yce{bottom:501.779100px;}
.y16f{bottom:510.397500px;}
.y83{bottom:512.482950px;}
.yec{bottom:515.234100px;}
.y5e{bottom:516.059100px;}
.ya9{bottom:516.307350px;}
.y103{bottom:518.660100px;}
.ycd{bottom:522.486600px;}
.y16e{bottom:526.746000px;}
.y82{bottom:532.959450px;}
.y5d{bottom:536.684100px;}
.ya8{bottom:537.014850px;}
.y40{bottom:537.592350px;}
.y102{bottom:539.367600px;}
.y2c{bottom:540.056700px;}
.ycc{bottom:543.194100px;}
.yeb{bottom:544.713150px;}
.y155{bottom:547.973850px;}
.y81{bottom:553.435950px;}
.y16d{bottom:555.852000px;}
.y5c{bottom:557.309100px;}
.ya7{bottom:557.722350px;}
.y127{bottom:560.362350px;}
.yd{bottom:561.067654px;}
.yea{bottom:563.763150px;}
.ycb{bottom:563.901600px;}
.y154{bottom:564.322350px;}
.y80{bottom:573.912450px;}
.y2b{bottom:574.256700px;}
.y16c{bottom:574.333500px;}
.y3f{bottom:575.392350px;}
.y101{bottom:577.925850px;}
.y5b{bottom:577.934100px;}
.ya6{bottom:578.429850px;}
.y153{bottom:580.670850px;}
.y126{bottom:580.904850px;}
.ye9{bottom:582.813150px;}
.yca{bottom:584.609100px;}
.yc{bottom:586.831085px;}
.y16b{bottom:590.682000px;}
.y152{bottom:597.019350px;}
.y5a{bottom:598.559100px;}
.ya5{bottom:599.137350px;}
.yb{bottom:600.184226px;}
.y125{bottom:601.447350px;}
.ye8{bottom:601.863150px;}
.y7f{bottom:603.316500px;}
.yc9{bottom:605.316600px;}
.y16a{bottom:607.030500px;}
.y2a{bottom:608.456700px;}
.y3e{bottom:613.192350px;}
.y151{bottom:613.367850px;}
.y59{bottom:619.184100px;}
.ya4{bottom:619.844850px;}
.ye7{bottom:620.913150px;}
.y124{bottom:621.989850px;}
.y7e{bottom:622.141500px;}
.y169{bottom:623.379000px;}
.yc8{bottom:626.024100px;}
.ya{bottom:626.206941px;}
.y150{bottom:629.716350px;}
.y9{bottom:639.571869px;}
.y168{bottom:639.727500px;}
.y58{bottom:639.809100px;}
.ye6{bottom:639.963150px;}
.ya3{bottom:640.552350px;}
.y7d{bottom:640.966500px;}
.y123{bottom:642.532350px;}
.y14f{bottom:646.064850px;}
.yc7{bottom:646.731600px;}
.y3d{bottom:650.992350px;}
.y8{bottom:652.936796px;}
.y167{bottom:656.076000px;}
.y25{bottom:657.176850px;}
.ye5{bottom:659.013150px;}
.y7c{bottom:659.791500px;}
.y57{bottom:660.434100px;}
.ya2{bottom:661.259850px;}
.y14e{bottom:662.413350px;}
.y122{bottom:663.074850px;}
.y7{bottom:666.301723px;}
.yc6{bottom:667.439100px;}
.y166{bottom:672.424500px;}
.ye4{bottom:678.063150px;}
.y7b{bottom:678.616500px;}
.y14d{bottom:678.761850px;}
.y6{bottom:679.666650px;}
.y56{bottom:681.059100px;}
.ya1{bottom:681.967350px;}
.y121{bottom:683.617350px;}
.yc5{bottom:688.146600px;}
.y165{bottom:688.773000px;}
.y14c{bottom:695.110350px;}
.ye3{bottom:697.113150px;}
.y55{bottom:701.684100px;}
.ya0{bottom:702.674850px;}
.y120{bottom:704.159850px;}
.y164{bottom:705.121500px;}
.y7a{bottom:706.367700px;}
.yc4{bottom:708.854100px;}
.y14b{bottom:711.458850px;}
.ye2{bottom:716.163150px;}
.y54{bottom:722.309100px;}
.y24{bottom:723.200850px;}
.y9f{bottom:723.382350px;}
.y11f{bottom:724.702350px;}
.y3c{bottom:726.592350px;}
.y79{bottom:726.844200px;}
.y14a{bottom:727.807350px;}
.yc3{bottom:729.561600px;}
.y163{bottom:734.227500px;}
.y5{bottom:741.942024px;}
.y53{bottom:742.934100px;}
.y9e{bottom:744.089850px;}
.y149{bottom:744.155850px;}
.y11e{bottom:745.244850px;}
.y78{bottom:747.320700px;}
.yc2{bottom:750.269100px;}
.y162{bottom:752.709000px;}
.y148{bottom:760.504350px;}
.y4{bottom:761.765488px;}
.y52{bottom:763.559100px;}
.y3b{bottom:764.392350px;}
.y9d{bottom:764.797350px;}
.y11d{bottom:765.787350px;}
.y161{bottom:769.057500px;}
.yc1{bottom:770.976600px;}
.y147{bottom:776.852850px;}
.y77{bottom:782.677500px;}
.y51{bottom:784.184100px;}
.y3{bottom:785.148217px;}
.y160{bottom:785.406000px;}
.y9c{bottom:785.504850px;}
.y11c{bottom:786.329850px;}
.yc0{bottom:791.684100px;}
.y146{bottom:793.201350px;}
.y15f{bottom:801.754500px;}
.y3a{bottom:802.192350px;}
.y50{bottom:804.809100px;}
.y9b{bottom:806.212350px;}
.y11b{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y145{bottom:809.549850px;}
.y73{bottom:809.676900px;}
.y76{bottom:809.677500px;}
.y23{bottom:811.700850px;}
.y15e{bottom:818.103000px;}
.ybf{bottom:821.313150px;}
.y4f{bottom:825.434100px;}
.y144{bottom:825.898350px;}
.y9a{bottom:826.919850px;}
.y11a{bottom:827.414850px;}
.y15d{bottom:834.451500px;}
.y39{bottom:839.992350px;}
.ybe{bottom:840.363150px;}
.y143{bottom:842.246850px;}
.y4e{bottom:846.059100px;}
.y99{bottom:847.627350px;}
.y119{bottom:847.957350px;}
.y15c{bottom:850.800000px;}
.y142{bottom:858.595350px;}
.y15b{bottom:867.148500px;}
.y98{bottom:868.334850px;}
.y118{bottom:868.499850px;}
.y75{bottom:868.565850px;}
.y141{bottom:874.943850px;}
.y38{bottom:877.792350px;}
.y15a{bottom:883.497000px;}
.y4d{bottom:884.542350px;}
.y74{bottom:889.042350px;}
.y140{bottom:891.292350px;}
.y4c{bottom:952.015800px;}
.h9{height:24.452867px;}
.h7{height:27.946133px;}
.h8{height:28.021561px;}
.h16{height:30.480469px;}
.hc{height:31.439400px;}
.h6{height:34.932667px;}
.ha{height:35.026952px;}
.h5{height:38.425933px;}
.hb{height:39.124587px;}
.h1e{height:42.820312px;}
.h1f{height:43.664062px;}
.h1a{height:45.720703px;}
.h3{height:48.905733px;}
.h4{height:49.037733px;}
.h1d{height:50.800781px;}
.h12{height:52.335938px;}
.h15{height:54.272461px;}
.h13{height:55.880859px;}
.h1b{height:60.960938px;}
.h1c{height:72.773438px;}
.h17{height:87.670898px;}
.h14{height:96.521484px;}
.h18{height:99.914062px;}
.h19{height:106.681641px;}
.hf{height:172.265625px;}
.h11{height:228.375000px;}
.h10{height:354.785156px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.he{height:999.000000px;}
.hd{height:999.213000px;}
.w1{width:701.250000px;}
.w3{width:701.575500px;}
.w2{width:701.576173px;}
.w0{width:701.580000px;}
.x0{left:0.000000px;}
.x3{left:36.747657px;}
.x1{left:43.430120px;}
.x16{left:46.771650px;}
.x1c{left:60.271650px;}
.x13{left:69.896400px;}
.x1b{left:76.535400px;}
.x8{left:80.205750px;}
.x1e{left:97.795350px;}
.x14{left:105.453900px;}
.xd{left:106.916700px;}
.x15{left:114.198900px;}
.xb{left:115.780200px;}
.x2{left:116.925434px;}
.x12{left:120.171900px;}
.xc{left:124.159200px;}
.x9{left:135.959250px;}
.xf{left:143.799900px;}
.x18{left:161.574750px;}
.x1d{left:182.834550px;}
.x11{left:184.488900px;}
.x7{left:190.392750px;}
.x2b{left:221.540850px;}
.x24{left:229.762350px;}
.x2d{left:231.895350px;}
.x10{left:252.336900px;}
.x25{left:256.208850px;}
.x21{left:265.199850px;}
.xa{left:281.522250px;}
.x32{left:285.260850px;}
.x36{left:295.399350px;}
.xe{left:307.133400px;}
.x1f{left:321.859350px;}
.x20{left:327.124350px;}
.x4{left:344.105623px;}
.x30{left:346.334850px;}
.x33{left:349.318350px;}
.x2e{left:352.180350px;}
.x29{left:353.381850px;}
.x37{left:356.972850px;}
.x35{left:359.065350px;}
.x27{left:368.123850px;}
.x38{left:374.131350px;}
.x22{left:378.154350px;}
.x2f{left:398.674350px;}
.x31{left:405.991350px;}
.x17{left:407.083800px;}
.x26{left:408.353850px;}
.x23{left:419.761350px;}
.x2c{left:426.524850px;}
.x2a{left:445.019850px;}
.x5{left:449.502150px;}
.x34{left:452.795850px;}
.x28{left:454.145850px;}
.x6{left:481.152750px;}
.x19{left:625.648500px;}
.x1a{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-3.637333pt;}
.ls8{letter-spacing:-3.120000pt;}
.ls5{letter-spacing:-2.010667pt;}
.ls3{letter-spacing:-1.040000pt;}
.ls6{letter-spacing:-0.586667pt;}
.ls9{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.096000pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws3{word-spacing:-40.597333pt;}
.ws4{word-spacing:-21.760000pt;}
.ws7{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.wsb{word-spacing:-12.672000pt;}
.wsa{word-spacing:-12.053333pt;}
.wsf{word-spacing:-10.944000pt;}
.ws6{word-spacing:-10.848000pt;}
.ws8{word-spacing:-9.621333pt;}
.ws1{word-spacing:0.000000pt;}
.ws10{word-spacing:0.240000pt;}
.wsc{word-spacing:0.586667pt;}
.ws5{word-spacing:0.970667pt;}
.ws9{word-spacing:1.941333pt;}
.wsd{word-spacing:3.024000pt;}
.wse{word-spacing:3.050667pt;}
._f{margin-left:-23.570133pt;}
._10{margin-left:-13.932800pt;}
._1b{margin-left:-11.760000pt;}
._12{margin-left:-10.835200pt;}
._1a{margin-left:-6.894933pt;}
._11{margin-left:-5.965867pt;}
._16{margin-left:-4.949333pt;}
._c{margin-left:-3.942400pt;}
._e{margin-left:-2.892800pt;}
._d{margin-left:-1.302400pt;}
._a{width:1.231993pt;}
._3{width:2.551986pt;}
._6{width:3.666647pt;}
._13{width:4.772875pt;}
._4{width:6.394632pt;}
._14{width:7.415467pt;}
._9{width:9.122617pt;}
._18{width:10.589333pt;}
._8{width:11.791936pt;}
._2{width:13.669259pt;}
._15{width:15.353067pt;}
._19{width:16.356267pt;}
._5{width:18.215901pt;}
._17{width:19.324800pt;}
._1{width:25.167863pt;}
._7{width:29.479839pt;}
._b{width:40.186447pt;}
._0{width:729.666877pt;}
.fs4{font-size:29.333173pt;}
.fse{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs7{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fs10{font-size:48.000000pt;}
.fs13{font-size:53.333333pt;}
.fs0{font-size:58.666347pt;}
.fsb{font-size:58.666667pt;}
.fs11{font-size:64.000000pt;}
.fsd{font-size:69.333333pt;}
.fs12{font-size:80.000000pt;}
.fsc{font-size:101.333333pt;}
.fsf{font-size:112.000000pt;}
.fs8{font-size:224.000000pt;}
.fsa{font-size:256.000000pt;}
.fs9{font-size:461.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y37{bottom:41.196800pt;}
.y21{bottom:44.680709pt;}
.y20{bottom:56.560644pt;}
.y1f{bottom:68.440579pt;}
.y1e{bottom:80.320514pt;}
.y1d{bottom:90.471887pt;}
.y36{bottom:90.708667pt;}
.ybd{bottom:90.806533pt;}
.y100{bottom:91.172533pt;}
.y97{bottom:91.396400pt;}
.y72{bottom:91.979200pt;}
.y13f{bottom:92.133867pt;}
.y117{bottom:93.337867pt;}
.y4b{bottom:96.165333pt;}
.ye1{bottom:97.382133pt;}
.y13e{bottom:106.665867pt;}
.ybc{bottom:109.213200pt;}
.yff{bottom:109.579200pt;}
.y96{bottom:109.656400pt;}
.y1c{bottom:109.706068pt;}
.y71{bottom:110.385867pt;}
.y4a{bottom:110.565333pt;}
.y116{bottom:111.597867pt;}
.ye0{bottom:114.315467pt;}
.y13d{bottom:121.197867pt;}
.y22{bottom:121.581067pt;}
.y49{bottom:124.965333pt;}
.y29{bottom:126.612800pt;}
.ybb{bottom:127.619867pt;}
.y95{bottom:127.916400pt;}
.yfe{bottom:127.985867pt;}
.y70{bottom:128.719200pt;}
.y115{bottom:129.857867pt;}
.ydf{bottom:131.248800pt;}
.y13c{bottom:135.729867pt;}
.y48{bottom:139.365333pt;}
.yba{bottom:146.026533pt;}
.y94{bottom:146.117733pt;}
.yfd{bottom:146.392533pt;}
.y6f{bottom:147.052533pt;}
.y114{bottom:148.117867pt;}
.yde{bottom:148.182133pt;}
.y13b{bottom:150.261867pt;}
.y47{bottom:153.765333pt;}
.y1b{bottom:159.645796pt;}
.y28{bottom:163.939467pt;}
.y93{bottom:164.319067pt;}
.yb9{bottom:164.433200pt;}
.y13a{bottom:164.793867pt;}
.yfc{bottom:164.799200pt;}
.ydd{bottom:165.115467pt;}
.y6e{bottom:165.385867pt;}
.y113{bottom:166.524533pt;}
.y46{bottom:168.165333pt;}
.y1a{bottom:168.550509pt;}
.y19{bottom:176.721893pt;}
.y139{bottom:179.325867pt;}
.ydc{bottom:182.048800pt;}
.y92{bottom:182.520400pt;}
.y45{bottom:182.565333pt;}
.y27{bottom:182.610133pt;}
.yb8{bottom:182.839867pt;}
.yfb{bottom:183.205867pt;}
.y6d{bottom:183.719200pt;}
.y18{bottom:184.138996pt;}
.y112{bottom:184.931200pt;}
.y180{bottom:191.510667pt;}
.y17{bottom:191.566574pt;}
.y138{bottom:193.857867pt;}
.y44{bottom:196.965333pt;}
.y16{bottom:198.994153pt;}
.y91{bottom:200.721733pt;}
.yb7{bottom:201.246533pt;}
.y26{bottom:201.280800pt;}
.yfa{bottom:201.612533pt;}
.y6c{bottom:202.052533pt;}
.y111{bottom:203.337867pt;}
.y15{bottom:206.411255pt;}
.ydb{bottom:206.739200pt;}
.y17f{bottom:207.938667pt;}
.y137{bottom:208.389867pt;}
.y43{bottom:211.365333pt;}
.y14{bottom:213.838834pt;}
.y90{bottom:218.923067pt;}
.yb6{bottom:219.653200pt;}
.yf9{bottom:220.019200pt;}
.y6b{bottom:220.385867pt;}
.y13{bottom:221.266412pt;}
.y110{bottom:221.744533pt;}
.y17e{bottom:222.470667pt;}
.y136{bottom:222.921867pt;}
.yda{bottom:225.145867pt;}
.y42{bottom:225.765333pt;}
.y12{bottom:228.683515pt;}
.y11{bottom:236.111093pt;}
.y17d{bottom:237.002667pt;}
.y8f{bottom:237.124400pt;}
.y135{bottom:237.453867pt;}
.yb5{bottom:238.059867pt;}
.yf8{bottom:238.425867pt;}
.y6a{bottom:238.719200pt;}
.y10f{bottom:240.151200pt;}
.y10{bottom:243.538672pt;}
.yd9{bottom:243.552533pt;}
.y17c{bottom:251.534667pt;}
.y134{bottom:251.985867pt;}
.y35{bottom:252.818400pt;}
.y8e{bottom:255.325733pt;}
.yb4{bottom:256.466533pt;}
.yf7{bottom:256.832533pt;}
.y69{bottom:257.052533pt;}
.y10e{bottom:258.557867pt;}
.yf{bottom:258.812874pt;}
.yd8{bottom:261.959200pt;}
.y17b{bottom:266.066667pt;}
.y133{bottom:266.517867pt;}
.y34{bottom:271.489067pt;}
.y8d{bottom:273.527067pt;}
.yb3{bottom:274.873200pt;}
.yf6{bottom:275.239200pt;}
.y68{bottom:275.385867pt;}
.y10d{bottom:276.964533pt;}
.yd7{bottom:280.365867pt;}
.y17a{bottom:280.598667pt;}
.y132{bottom:281.049867pt;}
.y33{bottom:290.159733pt;}
.y8c{bottom:291.728400pt;}
.yb2{bottom:293.279867pt;}
.yf5{bottom:293.645867pt;}
.y67{bottom:293.719200pt;}
.y179{bottom:295.130667pt;}
.y10c{bottom:295.371200pt;}
.y131{bottom:295.581867pt;}
.yd6{bottom:298.772533pt;}
.y32{bottom:308.830400pt;}
.y178{bottom:309.662667pt;}
.y8b{bottom:309.929733pt;}
.y130{bottom:310.113867pt;}
.yb1{bottom:311.686533pt;}
.yf4{bottom:311.905867pt;}
.y66{bottom:312.052533pt;}
.y10b{bottom:313.777867pt;}
.yd5{bottom:317.179200pt;}
.y177{bottom:324.194667pt;}
.y12f{bottom:324.645867pt;}
.y31{bottom:327.501067pt;}
.y8a{bottom:328.131067pt;}
.yb0{bottom:330.093200pt;}
.yf3{bottom:330.165867pt;}
.y65{bottom:330.385867pt;}
.y10a{bottom:332.184533pt;}
.yd4{bottom:335.585867pt;}
.y12e{bottom:339.177867pt;}
.y30{bottom:346.171733pt;}
.y89{bottom:346.332400pt;}
.yf2{bottom:348.425867pt;}
.yaf{bottom:348.499867pt;}
.y64{bottom:348.719200pt;}
.y176{bottom:350.066667pt;}
.y109{bottom:350.591200pt;}
.y12d{bottom:353.709867pt;}
.yd3{bottom:353.992533pt;}
.ye{bottom:354.564733pt;}
.y88{bottom:364.533733pt;}
.y2f{bottom:364.842400pt;}
.y175{bottom:366.494667pt;}
.yf1{bottom:366.685867pt;}
.yae{bottom:366.906533pt;}
.y63{bottom:367.052533pt;}
.y12c{bottom:368.241867pt;}
.y108{bottom:368.997867pt;}
.y159{bottom:371.840400pt;}
.yd2{bottom:372.399200pt;}
.y174{bottom:381.026667pt;}
.y87{bottom:382.735067pt;}
.y12b{bottom:382.773867pt;}
.y2e{bottom:383.513067pt;}
.yf0{bottom:384.945867pt;}
.yad{bottom:385.313200pt;}
.y62{bottom:385.385867pt;}
.y158{bottom:386.372400pt;}
.y107{bottom:387.404533pt;}
.yd1{bottom:390.805867pt;}
.y173{bottom:395.558667pt;}
.y12a{bottom:397.305867pt;}
.y157{bottom:400.904400pt;}
.y86{bottom:400.936400pt;}
.y2d{bottom:402.183733pt;}
.yef{bottom:403.205867pt;}
.y61{bottom:403.719200pt;}
.yac{bottom:403.719867pt;}
.y106{bottom:405.811200pt;}
.yd0{bottom:409.212533pt;}
.y172{bottom:410.090667pt;}
.y129{bottom:411.837867pt;}
.y85{bottom:419.137733pt;}
.yee{bottom:421.465867pt;}
.y60{bottom:422.052533pt;}
.yab{bottom:422.126533pt;}
.y105{bottom:424.217867pt;}
.y171{bottom:424.622667pt;}
.ycf{bottom:427.619200pt;}
.y156{bottom:431.311867pt;}
.y84{bottom:437.339067pt;}
.y170{bottom:439.154667pt;}
.yed{bottom:439.725867pt;}
.y5f{bottom:440.385867pt;}
.yaa{bottom:440.533200pt;}
.y128{bottom:442.245200pt;}
.y104{bottom:442.624533pt;}
.y41{bottom:444.259867pt;}
.yce{bottom:446.025867pt;}
.y16f{bottom:453.686667pt;}
.y83{bottom:455.540400pt;}
.yec{bottom:457.985867pt;}
.y5e{bottom:458.719200pt;}
.ya9{bottom:458.939867pt;}
.y103{bottom:461.031200pt;}
.ycd{bottom:464.432533pt;}
.y16e{bottom:468.218667pt;}
.y82{bottom:473.741733pt;}
.y5d{bottom:477.052533pt;}
.ya8{bottom:477.346533pt;}
.y40{bottom:477.859867pt;}
.y102{bottom:479.437867pt;}
.y2c{bottom:480.050400pt;}
.ycc{bottom:482.839200pt;}
.yeb{bottom:484.189467pt;}
.y155{bottom:487.087867pt;}
.y81{bottom:491.943067pt;}
.y16d{bottom:494.090667pt;}
.y5c{bottom:495.385867pt;}
.ya7{bottom:495.753200pt;}
.y127{bottom:498.099867pt;}
.yd{bottom:498.726803pt;}
.yea{bottom:501.122800pt;}
.ycb{bottom:501.245867pt;}
.y154{bottom:501.619867pt;}
.y80{bottom:510.144400pt;}
.y2b{bottom:510.450400pt;}
.y16c{bottom:510.518667pt;}
.y3f{bottom:511.459867pt;}
.y101{bottom:513.711867pt;}
.y5b{bottom:513.719200pt;}
.ya6{bottom:514.159867pt;}
.y153{bottom:516.151867pt;}
.y126{bottom:516.359867pt;}
.ye9{bottom:518.056133pt;}
.yca{bottom:519.652533pt;}
.yc{bottom:521.627631pt;}
.y16b{bottom:525.050667pt;}
.y152{bottom:530.683867pt;}
.y5a{bottom:532.052533pt;}
.ya5{bottom:532.566533pt;}
.yb{bottom:533.497090pt;}
.y125{bottom:534.619867pt;}
.ye8{bottom:534.989467pt;}
.y7f{bottom:536.281333pt;}
.yc9{bottom:538.059200pt;}
.y16a{bottom:539.582667pt;}
.y2a{bottom:540.850400pt;}
.y3e{bottom:545.059867pt;}
.y151{bottom:545.215867pt;}
.y59{bottom:550.385867pt;}
.ya4{bottom:550.973200pt;}
.ye7{bottom:551.922800pt;}
.y124{bottom:552.879867pt;}
.y7e{bottom:553.014667pt;}
.y169{bottom:554.114667pt;}
.yc8{bottom:556.465867pt;}
.ya{bottom:556.628392pt;}
.y150{bottom:559.747867pt;}
.y9{bottom:568.508328pt;}
.y168{bottom:568.646667pt;}
.y58{bottom:568.719200pt;}
.ye6{bottom:568.856133pt;}
.ya3{bottom:569.379867pt;}
.y7d{bottom:569.748000pt;}
.y123{bottom:571.139867pt;}
.y14f{bottom:574.279867pt;}
.yc7{bottom:574.872533pt;}
.y3d{bottom:578.659867pt;}
.y8{bottom:580.388263pt;}
.y167{bottom:583.178667pt;}
.y25{bottom:584.157200pt;}
.ye5{bottom:585.789467pt;}
.y7c{bottom:586.481333pt;}
.y57{bottom:587.052533pt;}
.ya2{bottom:587.786533pt;}
.y14e{bottom:588.811867pt;}
.y122{bottom:589.399867pt;}
.y7{bottom:592.268198pt;}
.yc6{bottom:593.279200pt;}
.y166{bottom:597.710667pt;}
.ye4{bottom:602.722800pt;}
.y7b{bottom:603.214667pt;}
.y14d{bottom:603.343867pt;}
.y6{bottom:604.148133pt;}
.y56{bottom:605.385867pt;}
.ya1{bottom:606.193200pt;}
.y121{bottom:607.659867pt;}
.yc5{bottom:611.685867pt;}
.y165{bottom:612.242667pt;}
.y14c{bottom:617.875867pt;}
.ye3{bottom:619.656133pt;}
.y55{bottom:623.719200pt;}
.ya0{bottom:624.599867pt;}
.y120{bottom:625.919867pt;}
.y164{bottom:626.774667pt;}
.y7a{bottom:627.882400pt;}
.yc4{bottom:630.092533pt;}
.y14b{bottom:632.407867pt;}
.ye2{bottom:636.589467pt;}
.y54{bottom:642.052533pt;}
.y24{bottom:642.845200pt;}
.y9f{bottom:643.006533pt;}
.y11f{bottom:644.179867pt;}
.y3c{bottom:645.859867pt;}
.y79{bottom:646.083733pt;}
.y14a{bottom:646.939867pt;}
.yc3{bottom:648.499200pt;}
.y163{bottom:652.646667pt;}
.y5{bottom:659.504022pt;}
.y53{bottom:660.385867pt;}
.y9e{bottom:661.413200pt;}
.y149{bottom:661.471867pt;}
.y11e{bottom:662.439867pt;}
.y78{bottom:664.285067pt;}
.yc2{bottom:666.905867pt;}
.y162{bottom:669.074667pt;}
.y148{bottom:676.003867pt;}
.y4{bottom:677.124878pt;}
.y52{bottom:678.719200pt;}
.y3b{bottom:679.459867pt;}
.y9d{bottom:679.819867pt;}
.y11d{bottom:680.699867pt;}
.y161{bottom:683.606667pt;}
.yc1{bottom:685.312533pt;}
.y147{bottom:690.535867pt;}
.y77{bottom:695.713333pt;}
.y51{bottom:697.052533pt;}
.y3{bottom:697.909527pt;}
.y160{bottom:698.138667pt;}
.y9c{bottom:698.226533pt;}
.y11c{bottom:698.959867pt;}
.yc0{bottom:703.719200pt;}
.y146{bottom:705.067867pt;}
.y15f{bottom:712.670667pt;}
.y3a{bottom:713.059867pt;}
.y50{bottom:715.385867pt;}
.y9b{bottom:716.633200pt;}
.y11b{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y145{bottom:719.599867pt;}
.y73{bottom:719.712800pt;}
.y76{bottom:719.713333pt;}
.y23{bottom:721.511867pt;}
.y15e{bottom:727.202667pt;}
.ybf{bottom:730.056133pt;}
.y4f{bottom:733.719200pt;}
.y144{bottom:734.131867pt;}
.y9a{bottom:735.039867pt;}
.y11a{bottom:735.479867pt;}
.y15d{bottom:741.734667pt;}
.y39{bottom:746.659867pt;}
.ybe{bottom:746.989467pt;}
.y143{bottom:748.663867pt;}
.y4e{bottom:752.052533pt;}
.y99{bottom:753.446533pt;}
.y119{bottom:753.739867pt;}
.y15c{bottom:756.266667pt;}
.y142{bottom:763.195867pt;}
.y15b{bottom:770.798667pt;}
.y98{bottom:771.853200pt;}
.y118{bottom:771.999867pt;}
.y75{bottom:772.058533pt;}
.y141{bottom:777.727867pt;}
.y38{bottom:780.259867pt;}
.y15a{bottom:785.330667pt;}
.y4d{bottom:786.259867pt;}
.y74{bottom:790.259867pt;}
.y140{bottom:792.259867pt;}
.y4c{bottom:846.236267pt;}
.h9{height:21.735881pt;}
.h7{height:24.841007pt;}
.h8{height:24.908055pt;}
.h16{height:27.093750pt;}
.hc{height:27.946133pt;}
.h6{height:31.051259pt;}
.ha{height:31.135068pt;}
.h5{height:34.156385pt;}
.hb{height:34.777410pt;}
.h1e{height:38.062500pt;}
.h1f{height:38.812500pt;}
.h1a{height:40.640625pt;}
.h3{height:43.471763pt;}
.h4{height:43.589096pt;}
.h1d{height:45.156250pt;}
.h12{height:46.520833pt;}
.h15{height:48.242188pt;}
.h13{height:49.671875pt;}
.h1b{height:54.187500pt;}
.h1c{height:64.687500pt;}
.h17{height:77.929688pt;}
.h14{height:85.796875pt;}
.h18{height:88.812500pt;}
.h19{height:94.828125pt;}
.hf{height:153.125000pt;}
.h11{height:203.000000pt;}
.h10{height:315.364583pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.he{height:888.000000pt;}
.hd{height:888.189333pt;}
.w1{width:623.333333pt;}
.w3{width:623.622667pt;}
.w2{width:623.623265pt;}
.w0{width:623.626667pt;}
.x0{left:0.000000pt;}
.x3{left:32.664584pt;}
.x1{left:38.604551pt;}
.x16{left:41.574800pt;}
.x1c{left:53.574800pt;}
.x13{left:62.130133pt;}
.x1b{left:68.031467pt;}
.x8{left:71.294000pt;}
.x1e{left:86.929200pt;}
.x14{left:93.736800pt;}
.xd{left:95.037067pt;}
.x15{left:101.510133pt;}
.xb{left:102.915733pt;}
.x2{left:103.933719pt;}
.x12{left:106.819467pt;}
.xc{left:110.363733pt;}
.x9{left:120.852667pt;}
.xf{left:127.822133pt;}
.x18{left:143.622000pt;}
.x1d{left:162.519600pt;}
.x11{left:163.990133pt;}
.x7{left:169.238000pt;}
.x2b{left:196.925200pt;}
.x24{left:204.233200pt;}
.x2d{left:206.129200pt;}
.x10{left:224.299467pt;}
.x25{left:227.741200pt;}
.x21{left:235.733200pt;}
.xa{left:250.242000pt;}
.x32{left:253.565200pt;}
.x36{left:262.577200pt;}
.xe{left:273.007467pt;}
.x1f{left:286.097200pt;}
.x20{left:290.777200pt;}
.x4{left:305.871665pt;}
.x30{left:307.853200pt;}
.x33{left:310.505200pt;}
.x2e{left:313.049200pt;}
.x29{left:314.117200pt;}
.x37{left:317.309200pt;}
.x35{left:319.169200pt;}
.x27{left:327.221200pt;}
.x38{left:332.561200pt;}
.x22{left:336.137200pt;}
.x2f{left:354.377200pt;}
.x31{left:360.881200pt;}
.x17{left:361.852267pt;}
.x26{left:362.981200pt;}
.x23{left:373.121200pt;}
.x2c{left:379.133200pt;}
.x2a{left:395.573200pt;}
.x5{left:399.557467pt;}
.x34{left:402.485200pt;}
.x28{left:403.685200pt;}
.x6{left:427.691333pt;}
.x19{left:556.132000pt;}
.x1a{left:570.667867pt;}
}




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