
    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_5b23cb93c5d427f8073985d2.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_b47a1df0a73a43f3aa060661.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_f1b720527895382e191d630b.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_b82ec512e85dd964f9d24b0a.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_872c043f359a14a6722d21d4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_3c878b22ebdf20b16d131874.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916016;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_7a8392daaffd97a975566673.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ca825722b150edfba65d3205.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_3bd3c70cf5dc35e1341b9a57.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4af6cf0fae2d04ba4a7f3353.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_2a7f2f91437c20888981af20.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_dcadd1a467a83447d780577c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_a0f1bc2b01de97a941afd1a3.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_d5941a5acdbf4f85229ace72.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.893555;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_fc15930a1691e2c83b186dae.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_3f852c99a39e8fba66448d0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916016;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_f7e3facdf20cf6f39908c491.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.916016;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;}
.ls17{letter-spacing:-1.248000px;}
.ls16{letter-spacing:-0.810000px;}
.lsf{letter-spacing:-0.710037px;}
.ls4{letter-spacing:-0.630000px;}
.lse{letter-spacing:-0.615365px;}
.ls12{letter-spacing:-0.234000px;}
.ls10{letter-spacing:-0.188870px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.047336px;}
.ls11{letter-spacing:0.094672px;}
.lsd{letter-spacing:0.110766px;}
.lsa{letter-spacing:0.125914px;}
.ls3{letter-spacing:0.156000px;}
.ls9{letter-spacing:0.236679px;}
.ls7{letter-spacing:0.390000px;}
.ls5{letter-spacing:0.468000px;}
.ls14{letter-spacing:0.546000px;}
.lsc{letter-spacing:0.624000px;}
.ls13{letter-spacing:1.092000px;}
.ls15{letter-spacing:1.404000px;}
.ls6{letter-spacing:1.560000px;}
.ls8{letter-spacing:11.928622px;}
.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;}
}
.ws4{word-spacing:-45.672000px;}
.ws3{word-spacing:-25.764000px;}
.ws5{word-spacing:-24.480000px;}
.ws9{word-spacing:-20.340000px;}
.ws20{word-spacing:-19.032000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws12{word-spacing:-14.228237px;}
.ws13{word-spacing:-14.039366px;}
.wsd{word-spacing:-12.627324px;}
.ws6{word-spacing:-12.204000px;}
.wsf{word-spacing:-10.934570px;}
.ws14{word-spacing:-10.792562px;}
.wse{word-spacing:-10.745227px;}
.ws10{word-spacing:-10.082525px;}
.ws11{word-spacing:-9.987854px;}
.wsb{word-spacing:-1.560000px;}
.ws16{word-spacing:-1.467410px;}
.ws1a{word-spacing:-1.278067px;}
.ws18{word-spacing:-1.273809px;}
.ws1e{word-spacing:-1.092000px;}
.ws1b{word-spacing:-0.994052px;}
.ws19{word-spacing:-0.804709px;}
.ws15{word-spacing:-0.624000px;}
.ws1f{word-spacing:-0.546000px;}
.wsa{word-spacing:-0.468000px;}
.wsc{word-spacing:-0.390000px;}
.ws1c{word-spacing:-0.331351px;}
.ws7{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.ws1d{word-spacing:0.234000px;}
.ws8{word-spacing:0.630000px;}
.ws21{word-spacing:0.810000px;}
.ws17{word-spacing:1.133222px;}
.ws22{word-spacing:1.248000px;}
._f{margin-left:-26.448000px;}
._10{margin-left:-15.087600px;}
._1c{margin-left:-13.093200px;}
._1d{margin-left:-11.944800px;}
._19{margin-left:-10.151807px;}
._16{margin-left:-8.832176px;}
._1b{margin-left:-7.591859px;}
._14{margin-left:-6.359517px;}
._d{margin-left:-4.435200px;}
._11{margin-left:-2.718000px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._13{width:6.521784px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._12{width:10.528102px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._1a{width:13.886400px;}
._18{width:16.275600px;}
._15{width:17.542800px;}
._9{width:18.555327px;}
._5{width:21.723310px;}
._c{width:28.210132px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._17{width:74.250000px;}
._0{width:769.805658px;}
.fc6{color:transparent;}
.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);}
.fsd{font-size:36.000000px;}
.fs3{font-size:37.714080px;}
.fs6{font-size:41.485488px;}
.fs4{font-size:42.428340px;}
.fs13{font-size:43.549200px;}
.fs2{font-size:47.142600px;}
.fs12{font-size:47.335800px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fsf{font-size:54.000000px;}
.fs15{font-size:55.383000px;}
.fs16{font-size:60.000000px;}
.fs14{font-size:62.956800px;}
.fs0{font-size:65.999640px;}
.fsa{font-size:66.000000px;}
.fs10{font-size:72.000000px;}
.fsc{font-size:78.000000px;}
.fs11{font-size:90.000000px;}
.fsb{font-size:114.000000px;}
.fse{font-size:126.000000px;}
.fs7{font-size:252.000000px;}
.fs9{font-size:288.000000px;}
.fs8{font-size:519.000000px;}
.yac{bottom:-64.203450px;}
.yab{bottom:-43.375480px;}
.yaa{bottom:-24.559500px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.298365px;}
.y32{bottom:46.346400px;}
.y20{bottom:50.265797px;}
.y1f{bottom:63.630724px;}
.y1e{bottom:76.995651px;}
.y1d{bottom:90.360579px;}
.y1c{bottom:101.780873px;}
.y31{bottom:102.047250px;}
.y10e{bottom:102.498000px;}
.y88{bottom:103.520100px;}
.y63{bottom:104.158050px;}
.ya8{bottom:106.847700px;}
.y12d{bottom:107.128650px;}
.ycc{bottom:108.689250px;}
.y3f{bottom:108.823350px;}
.y15b{bottom:114.651600px;}
.yec{bottom:115.684350px;}
.y10d{bottom:123.040500px;}
.y1b{bottom:123.419327px;}
.y87{bottom:124.062600px;}
.y62{bottom:124.700550px;}
.ya7{bottom:127.555200px;}
.y12c{bottom:127.836150px;}
.y3e{bottom:129.275850px;}
.ycb{bottom:129.396750px;}
.y15a{bottom:131.000100px;}
.yeb{bottom:136.391850px;}
.y21{bottom:136.778700px;}
.y28{bottom:142.439400px;}
.y10c{bottom:143.583000px;}
.y86{bottom:144.605100px;}
.y61{bottom:145.243050px;}
.y3d{bottom:145.475850px;}
.y159{bottom:147.348600px;}
.ya6{bottom:148.262700px;}
.y12b{bottom:148.543650px;}
.yca{bottom:150.104250px;}
.yea{bottom:157.099350px;}
.y3c{bottom:161.675850px;}
.y158{bottom:163.697100px;}
.y10b{bottom:164.125500px;}
.y85{bottom:165.147600px;}
.y60{bottom:165.785550px;}
.ya5{bottom:168.970200px;}
.y12a{bottom:169.251150px;}
.yc9{bottom:170.811750px;}
.ye9{bottom:177.806850px;}
.y3b{bottom:177.875850px;}
.y157{bottom:180.045600px;}
.y27{bottom:184.431900px;}
.y10a{bottom:184.668000px;}
.y84{bottom:185.690100px;}
.y5f{bottom:186.328050px;}
.ya4{bottom:189.677700px;}
.y129{bottom:189.958650px;}
.y1a{bottom:192.612878px;}
.y3a{bottom:194.075850px;}
.y156{bottom:196.394100px;}
.ye8{bottom:198.514350px;}
.yc8{bottom:200.440950px;}
.y19{bottom:202.630680px;}
.y109{bottom:205.210500px;}
.y26{bottom:205.436400px;}
.y83{bottom:206.232600px;}
.y5e{bottom:206.870550px;}
.y39{bottom:210.275850px;}
.ya3{bottom:210.385200px;}
.y128{bottom:210.666150px;}
.y18{bottom:212.648483px;}
.y155{bottom:212.742600px;}
.ye7{bottom:219.221850px;}
.yc7{bottom:219.490950px;}
.y17{bottom:222.678071px;}
.y108{bottom:225.753000px;}
.y25{bottom:226.440900px;}
.y38{bottom:226.475850px;}
.y82{bottom:226.775100px;}
.y5d{bottom:227.413050px;}
.y154{bottom:229.091100px;}
.ya2{bottom:231.092700px;}
.y127{bottom:231.373650px;}
.y16{bottom:232.695874px;}
.yc6{bottom:238.540950px;}
.ye6{bottom:239.929350px;}
.y37{bottom:242.675850px;}
.y15{bottom:242.725462px;}
.y153{bottom:245.439600px;}
.y81{bottom:247.317600px;}
.y5c{bottom:247.955550px;}
.y126{bottom:252.081150px;}
.y14{bottom:252.743264px;}
.yc5{bottom:257.590950px;}
.ye5{bottom:260.636850px;}
.y152{bottom:261.788100px;}
.y13{bottom:262.761067px;}
.y107{bottom:263.310900px;}
.y80{bottom:267.860100px;}
.y5b{bottom:268.498050px;}
.ya1{bottom:269.650950px;}
.y125{bottom:272.788650px;}
.y12{bottom:272.790655px;}
.y151{bottom:278.136600px;}
.ye4{bottom:281.344350px;}
.y11{bottom:282.808457px;}
.y30{bottom:284.434200px;}
.yc4{bottom:285.525000px;}
.y7f{bottom:288.402600px;}
.y5a{bottom:289.040550px;}
.y10{bottom:292.838046px;}
.y124{bottom:293.496150px;}
.y150{bottom:294.485100px;}
.ye3{bottom:302.051850px;}
.yf{bottom:302.855848px;}
.y2f{bottom:305.438700px;}
.yc3{bottom:306.232500px;}
.y7e{bottom:308.945100px;}
.y59{bottom:309.583050px;}
.y14f{bottom:310.833600px;}
.ye{bottom:312.873651px;}
.y123{bottom:314.203650px;}
.ye2{bottom:322.759350px;}
.y106{bottom:324.349050px;}
.y2e{bottom:326.443200px;}
.yc2{bottom:326.940000px;}
.y14e{bottom:327.182100px;}
.y7d{bottom:329.487600px;}
.y58{bottom:330.125550px;}
.yd{bottom:330.893909px;}
.ya0{bottom:332.217450px;}
.y122{bottom:334.911150px;}
.y14d{bottom:343.530600px;}
.y105{bottom:344.891550px;}
.y2d{bottom:347.447700px;}
.yc1{bottom:347.647500px;}
.y7c{bottom:350.030100px;}
.y57{bottom:350.668050px;}
.y9f{bottom:352.924950px;}
.y121{bottom:355.618650px;}
.y14c{bottom:359.879100px;}
.ye1{bottom:361.317600px;}
.y104{bottom:365.434050px;}
.yc0{bottom:368.355000px;}
.y2c{bottom:368.452200px;}
.y7b{bottom:370.572600px;}
.y56{bottom:371.210550px;}
.y9e{bottom:373.632450px;}
.y14b{bottom:376.227600px;}
.y103{bottom:385.976550px;}
.ybf{bottom:389.062500px;}
.y2b{bottom:389.456700px;}
.y7a{bottom:391.115100px;}
.y14a{bottom:392.576100px;}
.y120{bottom:393.326550px;}
.y9d{bottom:394.339950px;}
.y55{bottom:408.768450px;}
.y149{bottom:408.924600px;}
.ybe{bottom:409.770000px;}
.y79{bottom:411.657600px;}
.y102{bottom:415.030500px;}
.y9c{bottom:415.047450px;}
.ye0{bottom:423.944100px;}
.y148{bottom:425.273100px;}
.y78{bottom:432.200100px;}
.y101{bottom:433.855500px;}
.y9b{bottom:435.754950px;}
.y54{bottom:435.768450px;}
.yc{bottom:440.641882px;}
.y147{bottom:441.621600px;}
.ydf{bottom:444.651600px;}
.y174{bottom:445.765350px;}
.ybd{bottom:448.328250px;}
.y100{bottom:452.680500px;}
.y77{bottom:452.742600px;}
.y11f{bottom:454.184850px;}
.y9a{bottom:456.462450px;}
.y146{bottom:457.970100px;}
.y173{bottom:464.246850px;}
.yde{bottom:465.359100px;}
.yff{bottom:471.505500px;}
.y76{bottom:473.285100px;}
.y145{bottom:474.318600px;}
.y11e{bottom:474.892350px;}
.y2a{bottom:477.056700px;}
.y99{bottom:477.169950px;}
.y172{bottom:480.595350px;}
.ydd{bottom:486.066600px;}
.yfe{bottom:490.330500px;}
.y144{bottom:490.667100px;}
.y75{bottom:493.827600px;}
.y53{bottom:494.783100px;}
.y11d{bottom:495.599850px;}
.y171{bottom:496.943850px;}
.y98{bottom:497.877450px;}
.ydc{bottom:506.774100px;}
.y143{bottom:507.015600px;}
.yfd{bottom:509.155500px;}
.ybc{bottom:511.044900px;}
.y29{bottom:511.256700px;}
.y170{bottom:513.292350px;}
.y74{bottom:514.370100px;}
.y52{bottom:515.325600px;}
.y11c{bottom:516.307350px;}
.y97{bottom:518.584950px;}
.y142{bottom:523.364100px;}
.ydb{bottom:527.481600px;}
.yfc{bottom:527.980500px;}
.y16f{bottom:529.640850px;}
.y73{bottom:534.912600px;}
.y51{bottom:535.868100px;}
.ya9{bottom:536.941500px;}
.y11b{bottom:537.014850px;}
.y96{bottom:539.292450px;}
.y141{bottom:539.712600px;}
.y16e{bottom:545.989350px;}
.yfb{bottom:546.805500px;}
.yda{bottom:548.189100px;}
.yb9{bottom:548.856288px;}
.y72{bottom:555.455100px;}
.y140{bottom:556.061100px;}
.y50{bottom:556.410600px;}
.y11a{bottom:557.722350px;}
.y95{bottom:559.999950px;}
.y16d{bottom:562.337850px;}
.yb8{bottom:564.003744px;}
.yd9{bottom:568.896600px;}
.y13f{bottom:572.409600px;}
.yfa{bottom:574.186950px;}
.y71{bottom:575.997600px;}
.y119{bottom:578.429850px;}
.y16c{bottom:578.686350px;}
.y4f{bottom:579.081600px;}
.yb7{bottom:579.151200px;}
.y94{bottom:580.707450px;}
.y13e{bottom:588.758100px;}
.yd8{bottom:589.604100px;}
.yf9{bottom:594.729450px;}
.y16b{bottom:595.034850px;}
.y70{bottom:596.540100px;}
.yb6{bottom:598.559100px;}
.y118{bottom:599.137350px;}
.y4e{bottom:599.624100px;}
.y93{bottom:601.414950px;}
.yb{bottom:602.824212px;}
.y13d{bottom:605.106600px;}
.yd7{bottom:610.311600px;}
.yf8{bottom:615.271950px;}
.y6f{bottom:617.082600px;}
.y117{bottom:619.844850px;}
.y4d{bottom:620.166600px;}
.y13c{bottom:621.455100px;}
.y92{bottom:622.122450px;}
.ya{bottom:623.578742px;}
.yd6{bottom:631.019100px;}
.yf7{bottom:635.814450px;}
.y9{bottom:636.931883px;}
.y6e{bottom:637.625100px;}
.y13b{bottom:637.803600px;}
.y116{bottom:640.552350px;}
.y4c{bottom:640.709100px;}
.y91{bottom:642.829950px;}
.yb5{bottom:650.975388px;}
.yd5{bottom:651.726600px;}
.y13a{bottom:654.152100px;}
.yf6{bottom:656.356950px;}
.y24{bottom:657.176850px;}
.y6d{bottom:658.167600px;}
.y4b{bottom:661.251600px;}
.y115{bottom:661.259850px;}
.y16a{bottom:662.413350px;}
.y8{bottom:662.954598px;}
.y90{bottom:663.537450px;}
.yb4{bottom:666.122844px;}
.y139{bottom:670.500600px;}
.yd4{bottom:672.434100px;}
.y7{bottom:676.319525px;}
.yf5{bottom:676.899450px;}
.y169{bottom:678.761850px;}
.yb3{bottom:681.270300px;}
.y4a{bottom:681.794100px;}
.y114{bottom:681.967350px;}
.y8f{bottom:684.244950px;}
.y138{bottom:686.849100px;}
.y6{bottom:689.684452px;}
.y168{bottom:695.110350px;}
.y6c{bottom:696.575850px;}
.yf4{bottom:697.441950px;}
.yb2{bottom:700.678050px;}
.yd3{bottom:702.063300px;}
.y49{bottom:702.336600px;}
.y113{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.y137{bottom:703.197600px;}
.y8e{bottom:704.952450px;}
.y167{bottom:711.458850px;}
.yf3{bottom:717.984450px;}
.y136{bottom:719.546100px;}
.yd2{bottom:721.113300px;}
.y48{bottom:722.879100px;}
.y23{bottom:723.200850px;}
.y112{bottom:723.382350px;}
.y6b{bottom:723.575850px;}
.y8d{bottom:725.659950px;}
.y36{bottom:726.592350px;}
.y166{bottom:727.807350px;}
.y135{bottom:735.894600px;}
.yd1{bottom:740.163300px;}
.y47{bottom:743.421600px;}
.y111{bottom:744.089850px;}
.y165{bottom:744.155850px;}
.y8c{bottom:746.367450px;}
.yf2{bottom:747.038400px;}
.y134{bottom:752.243100px;}
.yb1{bottom:753.094488px;}
.yd0{bottom:759.213300px;}
.y164{bottom:760.504350px;}
.y46{bottom:763.964100px;}
.y35{bottom:764.392350px;}
.y110{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.yf1{bottom:765.863400px;}
.yb0{bottom:768.241944px;}
.y133{bottom:768.591600px;}
.y163{bottom:776.852850px;}
.ycf{bottom:778.263300px;}
.yaf{bottom:783.389400px;}
.y45{bottom:784.506600px;}
.yf0{bottom:784.688400px;}
.y8b{bottom:784.925850px;}
.y132{bottom:784.940100px;}
.y3{bottom:785.148217px;}
.y10f{bottom:785.504850px;}
.y6a{bottom:786.329850px;}
.y162{bottom:793.201350px;}
.y131{bottom:801.288600px;}
.yae{bottom:802.797150px;}
.yef{bottom:803.513400px;}
.y44{bottom:805.049100px;}
.yce{bottom:806.212350px;}
.y69{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y161{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y130{bottom:817.637100px;}
.yee{bottom:822.338400px;}
.y43{bottom:825.591600px;}
.y160{bottom:825.898350px;}
.ycd{bottom:826.919850px;}
.y68{bottom:827.414850px;}
.y12f{bottom:833.985600px;}
.y34{bottom:839.992350px;}
.yed{bottom:841.163400px;}
.y15f{bottom:842.246850px;}
.y42{bottom:846.134100px;}
.y8a{bottom:847.627350px;}
.y67{bottom:847.957350px;}
.y64{bottom:848.093850px;}
.y12e{bottom:850.334100px;}
.y15e{bottom:858.595350px;}
.ybb{bottom:860.369108px;}
.y89{bottom:868.334850px;}
.y66{bottom:868.499850px;}
.yad{bottom:868.984800px;}
.y15d{bottom:874.943850px;}
.yba{bottom:877.650750px;}
.y33{bottom:877.792350px;}
.y41{bottom:884.542350px;}
.y65{bottom:889.042350px;}
.y15c{bottom:891.292350px;}
.y40{bottom:952.015800px;}
.h6{height:27.946133px;}
.h12{height:28.546875px;}
.h1b{height:30.301567px;}
.h7{height:31.439400px;}
.h1a{height:32.081099px;}
.h1e{height:34.924020px;}
.h5{height:34.932667px;}
.h4{height:38.425933px;}
.h1d{height:38.535535px;}
.h8{height:39.124587px;}
.h16{height:42.820312px;}
.h15{height:43.664062px;}
.h1c{height:43.805391px;}
.h1f{height:47.578125px;}
.he{height:48.694336px;}
.h3{height:48.905733px;}
.hf{height:52.335938px;}
.h17{height:57.093750px;}
.h11{height:63.070312px;}
.h18{height:72.773438px;}
.h13{height:87.670898px;}
.h10{height:90.398438px;}
.h14{height:99.914062px;}
.hb{height:172.265625px;}
.hd{height:212.484375px;}
.hc{height:354.785156px;}
.h19{height:365.994000px;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.ha{height:999.000000px;}
.h9{height:999.213000px;}
.w4{width:463.464000px;}
.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;}
.x13{left:46.771650px;}
.x19{left:60.271650px;}
.x18{left:76.535400px;}
.x8{left:80.205750px;}
.x11{left:86.082900px;}
.x20{left:97.795200px;}
.x12{left:114.198900px;}
.x2{left:116.925434px;}
.x9{left:135.959250px;}
.xf{left:144.707400px;}
.x10{left:155.333400px;}
.x15{left:161.574750px;}
.x23{left:181.389900px;}
.x1f{left:182.834550px;}
.x7{left:190.392750px;}
.xb{left:209.128800px;}
.x1b{left:211.334850px;}
.xc{left:215.769300px;}
.xe{left:240.572400px;}
.xa{left:281.522250px;}
.x24{left:288.417900px;}
.xd{left:307.133400px;}
.x27{left:316.983900px;}
.x22{left:321.843900px;}
.x4{left:344.105623px;}
.x21{left:356.970900px;}
.x26{left:404.855400px;}
.x14{left:407.083800px;}
.x25{left:426.185400px;}
.x28{left:442.047900px;}
.x5{left:449.502150px;}
.x1d{left:455.164864px;}
.x1a{left:461.213400px;}
.x1e{left:467.667900px;}
.x1c{left:470.778150px;}
.x6{left:481.152750px;}
.x16{left:634.923450px;}
.x17{left:641.637300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-1.109333pt;}
.ls16{letter-spacing:-0.720000pt;}
.lsf{letter-spacing:-0.631144pt;}
.ls4{letter-spacing:-0.560000pt;}
.lse{letter-spacing:-0.546991pt;}
.ls12{letter-spacing:-0.208000pt;}
.ls10{letter-spacing:-0.167885pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.042076pt;}
.ls11{letter-spacing:0.084153pt;}
.lsd{letter-spacing:0.098459pt;}
.lsa{letter-spacing:0.111923pt;}
.ls3{letter-spacing:0.138667pt;}
.ls9{letter-spacing:0.210381pt;}
.ls7{letter-spacing:0.346667pt;}
.ls5{letter-spacing:0.416000pt;}
.ls14{letter-spacing:0.485333pt;}
.lsc{letter-spacing:0.554667pt;}
.ls13{letter-spacing:0.970667pt;}
.ls15{letter-spacing:1.248000pt;}
.ls6{letter-spacing:1.386667pt;}
.ls8{letter-spacing:10.603219pt;}
.ls2{letter-spacing:21.760000pt;}
.ls1{letter-spacing:40.597333pt;}
.ws4{word-spacing:-40.597333pt;}
.ws3{word-spacing:-22.901333pt;}
.ws5{word-spacing:-21.760000pt;}
.ws9{word-spacing:-18.080000pt;}
.ws20{word-spacing:-16.917333pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws12{word-spacing:-12.647322pt;}
.ws13{word-spacing:-12.479437pt;}
.wsd{word-spacing:-11.224288pt;}
.ws6{word-spacing:-10.848000pt;}
.wsf{word-spacing:-9.719618pt;}
.ws14{word-spacing:-9.593389pt;}
.wse{word-spacing:-9.551313pt;}
.ws10{word-spacing:-8.962245pt;}
.ws11{word-spacing:-8.878092pt;}
.wsb{word-spacing:-1.386667pt;}
.ws16{word-spacing:-1.304364pt;}
.ws1a{word-spacing:-1.136059pt;}
.ws18{word-spacing:-1.132275pt;}
.ws1e{word-spacing:-0.970667pt;}
.ws1b{word-spacing:-0.883602pt;}
.ws19{word-spacing:-0.715297pt;}
.ws15{word-spacing:-0.554667pt;}
.ws1f{word-spacing:-0.485333pt;}
.wsa{word-spacing:-0.416000pt;}
.wsc{word-spacing:-0.346667pt;}
.ws1c{word-spacing:-0.294534pt;}
.ws7{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.ws1d{word-spacing:0.208000pt;}
.ws8{word-spacing:0.560000pt;}
.ws21{word-spacing:0.720000pt;}
.ws17{word-spacing:1.007309pt;}
.ws22{word-spacing:1.109333pt;}
._f{margin-left:-23.509333pt;}
._10{margin-left:-13.411200pt;}
._1c{margin-left:-11.638400pt;}
._1d{margin-left:-10.617600pt;}
._19{margin-left:-9.023828pt;}
._16{margin-left:-7.850823pt;}
._1b{margin-left:-6.748319pt;}
._14{margin-left:-5.652904pt;}
._d{margin-left:-3.942400pt;}
._11{margin-left:-2.416000pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._13{width:5.797141pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._12{width:9.358313pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._1a{width:12.343467pt;}
._18{width:14.467200pt;}
._15{width:15.593600pt;}
._9{width:16.493624pt;}
._5{width:19.309609pt;}
._c{width:25.075673pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._17{width:66.000000pt;}
._0{width:684.271696pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs4{font-size:37.714080pt;}
.fs13{font-size:38.710400pt;}
.fs2{font-size:41.904533pt;}
.fs12{font-size:42.076267pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fsf{font-size:48.000000pt;}
.fs15{font-size:49.229333pt;}
.fs16{font-size:53.333333pt;}
.fs14{font-size:55.961600pt;}
.fs0{font-size:58.666347pt;}
.fsa{font-size:58.666667pt;}
.fs10{font-size:64.000000pt;}
.fsc{font-size:69.333333pt;}
.fs11{font-size:80.000000pt;}
.fsb{font-size:101.333333pt;}
.fse{font-size:112.000000pt;}
.fs7{font-size:224.000000pt;}
.fs9{font-size:256.000000pt;}
.fs8{font-size:461.333333pt;}
.yac{bottom:-57.069733pt;}
.yab{bottom:-38.555983pt;}
.yaa{bottom:-21.830667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.265213pt;}
.y32{bottom:41.196800pt;}
.y20{bottom:44.680709pt;}
.y1f{bottom:56.560644pt;}
.y1e{bottom:68.440579pt;}
.y1d{bottom:80.320514pt;}
.y1c{bottom:90.471887pt;}
.y31{bottom:90.708667pt;}
.y10e{bottom:91.109333pt;}
.y88{bottom:92.017867pt;}
.y63{bottom:92.584933pt;}
.ya8{bottom:94.975733pt;}
.y12d{bottom:95.225467pt;}
.ycc{bottom:96.612667pt;}
.y3f{bottom:96.731867pt;}
.y15b{bottom:101.912533pt;}
.yec{bottom:102.830533pt;}
.y10d{bottom:109.369333pt;}
.y1b{bottom:109.706068pt;}
.y87{bottom:110.277867pt;}
.y62{bottom:110.844933pt;}
.ya7{bottom:113.382400pt;}
.y12c{bottom:113.632133pt;}
.y3e{bottom:114.911867pt;}
.ycb{bottom:115.019333pt;}
.y15a{bottom:116.444533pt;}
.yeb{bottom:121.237200pt;}
.y21{bottom:121.581067pt;}
.y28{bottom:126.612800pt;}
.y10c{bottom:127.629333pt;}
.y86{bottom:128.537867pt;}
.y61{bottom:129.104933pt;}
.y3d{bottom:129.311867pt;}
.y159{bottom:130.976533pt;}
.ya6{bottom:131.789067pt;}
.y12b{bottom:132.038800pt;}
.yca{bottom:133.426000pt;}
.yea{bottom:139.643867pt;}
.y3c{bottom:143.711867pt;}
.y158{bottom:145.508533pt;}
.y10b{bottom:145.889333pt;}
.y85{bottom:146.797867pt;}
.y60{bottom:147.364933pt;}
.ya5{bottom:150.195733pt;}
.y12a{bottom:150.445467pt;}
.yc9{bottom:151.832667pt;}
.ye9{bottom:158.050533pt;}
.y3b{bottom:158.111867pt;}
.y157{bottom:160.040533pt;}
.y27{bottom:163.939467pt;}
.y10a{bottom:164.149333pt;}
.y84{bottom:165.057867pt;}
.y5f{bottom:165.624933pt;}
.ya4{bottom:168.602400pt;}
.y129{bottom:168.852133pt;}
.y1a{bottom:171.211447pt;}
.y3a{bottom:172.511867pt;}
.y156{bottom:174.572533pt;}
.ye8{bottom:176.457200pt;}
.yc8{bottom:178.169733pt;}
.y19{bottom:180.116160pt;}
.y109{bottom:182.409333pt;}
.y26{bottom:182.610133pt;}
.y83{bottom:183.317867pt;}
.y5e{bottom:183.884933pt;}
.y39{bottom:186.911867pt;}
.ya3{bottom:187.009067pt;}
.y128{bottom:187.258800pt;}
.y18{bottom:189.020874pt;}
.y155{bottom:189.104533pt;}
.ye7{bottom:194.863867pt;}
.yc7{bottom:195.103067pt;}
.y17{bottom:197.936063pt;}
.y108{bottom:200.669333pt;}
.y25{bottom:201.280800pt;}
.y38{bottom:201.311867pt;}
.y82{bottom:201.577867pt;}
.y5d{bottom:202.144933pt;}
.y154{bottom:203.636533pt;}
.ya2{bottom:205.415733pt;}
.y127{bottom:205.665467pt;}
.y16{bottom:206.840777pt;}
.yc6{bottom:212.036400pt;}
.ye6{bottom:213.270533pt;}
.y37{bottom:215.711867pt;}
.y15{bottom:215.755966pt;}
.y153{bottom:218.168533pt;}
.y81{bottom:219.837867pt;}
.y5c{bottom:220.404933pt;}
.y126{bottom:224.072133pt;}
.y14{bottom:224.660679pt;}
.yc5{bottom:228.969733pt;}
.ye5{bottom:231.677200pt;}
.y152{bottom:232.700533pt;}
.y13{bottom:233.565393pt;}
.y107{bottom:234.054133pt;}
.y80{bottom:238.097867pt;}
.y5b{bottom:238.664933pt;}
.ya1{bottom:239.689733pt;}
.y125{bottom:242.478800pt;}
.y12{bottom:242.480582pt;}
.y151{bottom:247.232533pt;}
.ye4{bottom:250.083867pt;}
.y11{bottom:251.385295pt;}
.y30{bottom:252.830400pt;}
.yc4{bottom:253.800000pt;}
.y7f{bottom:256.357867pt;}
.y5a{bottom:256.924933pt;}
.y10{bottom:260.300485pt;}
.y124{bottom:260.885467pt;}
.y150{bottom:261.764533pt;}
.ye3{bottom:268.490533pt;}
.yf{bottom:269.205198pt;}
.y2f{bottom:271.501067pt;}
.yc3{bottom:272.206667pt;}
.y7e{bottom:274.617867pt;}
.y59{bottom:275.184933pt;}
.y14f{bottom:276.296533pt;}
.ye{bottom:278.109912pt;}
.y123{bottom:279.292133pt;}
.ye2{bottom:286.897200pt;}
.y106{bottom:288.310267pt;}
.y2e{bottom:290.171733pt;}
.yc2{bottom:290.613333pt;}
.y14e{bottom:290.828533pt;}
.y7d{bottom:292.877867pt;}
.y58{bottom:293.444933pt;}
.yd{bottom:294.127919pt;}
.ya0{bottom:295.304400pt;}
.y122{bottom:297.698800pt;}
.y14d{bottom:305.360533pt;}
.y105{bottom:306.570267pt;}
.y2d{bottom:308.842400pt;}
.yc1{bottom:309.020000pt;}
.y7c{bottom:311.137867pt;}
.y57{bottom:311.704933pt;}
.y9f{bottom:313.711067pt;}
.y121{bottom:316.105467pt;}
.y14c{bottom:319.892533pt;}
.ye1{bottom:321.171200pt;}
.y104{bottom:324.830267pt;}
.yc0{bottom:327.426667pt;}
.y2c{bottom:327.513067pt;}
.y7b{bottom:329.397867pt;}
.y56{bottom:329.964933pt;}
.y9e{bottom:332.117733pt;}
.y14b{bottom:334.424533pt;}
.y103{bottom:343.090267pt;}
.ybf{bottom:345.833333pt;}
.y2b{bottom:346.183733pt;}
.y7a{bottom:347.657867pt;}
.y14a{bottom:348.956533pt;}
.y120{bottom:349.623600pt;}
.y9d{bottom:350.524400pt;}
.y55{bottom:363.349733pt;}
.y149{bottom:363.488533pt;}
.ybe{bottom:364.240000pt;}
.y79{bottom:365.917867pt;}
.y102{bottom:368.916000pt;}
.y9c{bottom:368.931067pt;}
.ye0{bottom:376.839200pt;}
.y148{bottom:378.020533pt;}
.y78{bottom:384.177867pt;}
.y101{bottom:385.649333pt;}
.y9b{bottom:387.337733pt;}
.y54{bottom:387.349733pt;}
.yc{bottom:391.681673pt;}
.y147{bottom:392.552533pt;}
.ydf{bottom:395.245867pt;}
.y174{bottom:396.235867pt;}
.ybd{bottom:398.514000pt;}
.y100{bottom:402.382667pt;}
.y77{bottom:402.437867pt;}
.y11f{bottom:403.719867pt;}
.y9a{bottom:405.744400pt;}
.y146{bottom:407.084533pt;}
.y173{bottom:412.663867pt;}
.yde{bottom:413.652533pt;}
.yff{bottom:419.116000pt;}
.y76{bottom:420.697867pt;}
.y145{bottom:421.616533pt;}
.y11e{bottom:422.126533pt;}
.y2a{bottom:424.050400pt;}
.y99{bottom:424.151067pt;}
.y172{bottom:427.195867pt;}
.ydd{bottom:432.059200pt;}
.yfe{bottom:435.849333pt;}
.y144{bottom:436.148533pt;}
.y75{bottom:438.957867pt;}
.y53{bottom:439.807200pt;}
.y11d{bottom:440.533200pt;}
.y171{bottom:441.727867pt;}
.y98{bottom:442.557733pt;}
.ydc{bottom:450.465867pt;}
.y143{bottom:450.680533pt;}
.yfd{bottom:452.582667pt;}
.ybc{bottom:454.262133pt;}
.y29{bottom:454.450400pt;}
.y170{bottom:456.259867pt;}
.y74{bottom:457.217867pt;}
.y52{bottom:458.067200pt;}
.y11c{bottom:458.939867pt;}
.y97{bottom:460.964400pt;}
.y142{bottom:465.212533pt;}
.ydb{bottom:468.872533pt;}
.yfc{bottom:469.316000pt;}
.y16f{bottom:470.791867pt;}
.y73{bottom:475.477867pt;}
.y51{bottom:476.327200pt;}
.ya9{bottom:477.281333pt;}
.y11b{bottom:477.346533pt;}
.y96{bottom:479.371067pt;}
.y141{bottom:479.744533pt;}
.y16e{bottom:485.323867pt;}
.yfb{bottom:486.049333pt;}
.yda{bottom:487.279200pt;}
.yb9{bottom:487.872256pt;}
.y72{bottom:493.737867pt;}
.y140{bottom:494.276533pt;}
.y50{bottom:494.587200pt;}
.y11a{bottom:495.753200pt;}
.y95{bottom:497.777733pt;}
.y16d{bottom:499.855867pt;}
.yb8{bottom:501.336661pt;}
.yd9{bottom:505.685867pt;}
.y13f{bottom:508.808533pt;}
.yfa{bottom:510.388400pt;}
.y71{bottom:511.997867pt;}
.y119{bottom:514.159867pt;}
.y16c{bottom:514.387867pt;}
.y4f{bottom:514.739200pt;}
.yb7{bottom:514.801067pt;}
.y94{bottom:516.184400pt;}
.y13e{bottom:523.340533pt;}
.yd8{bottom:524.092533pt;}
.yf9{bottom:528.648400pt;}
.y16b{bottom:528.919867pt;}
.y70{bottom:530.257867pt;}
.yb6{bottom:532.052533pt;}
.y118{bottom:532.566533pt;}
.y4e{bottom:532.999200pt;}
.y93{bottom:534.591067pt;}
.yb{bottom:535.843744pt;}
.y13d{bottom:537.872533pt;}
.yd7{bottom:542.499200pt;}
.yf8{bottom:546.908400pt;}
.y6f{bottom:548.517867pt;}
.y117{bottom:550.973200pt;}
.y4d{bottom:551.259200pt;}
.y13c{bottom:552.404533pt;}
.y92{bottom:552.997733pt;}
.ya{bottom:554.292215pt;}
.yd6{bottom:560.905867pt;}
.yf7{bottom:565.168400pt;}
.y9{bottom:566.161674pt;}
.y6e{bottom:566.777867pt;}
.y13b{bottom:566.936533pt;}
.y116{bottom:569.379867pt;}
.y4c{bottom:569.519200pt;}
.y91{bottom:571.404400pt;}
.yb5{bottom:578.644789pt;}
.yd5{bottom:579.312533pt;}
.y13a{bottom:581.468533pt;}
.yf6{bottom:583.428400pt;}
.y24{bottom:584.157200pt;}
.y6d{bottom:585.037867pt;}
.y4b{bottom:587.779200pt;}
.y115{bottom:587.786533pt;}
.y16a{bottom:588.811867pt;}
.y8{bottom:589.292976pt;}
.y90{bottom:589.811067pt;}
.yb4{bottom:592.109195pt;}
.y139{bottom:596.000533pt;}
.yd4{bottom:597.719200pt;}
.y7{bottom:601.172911pt;}
.yf5{bottom:601.688400pt;}
.y169{bottom:603.343867pt;}
.yb3{bottom:605.573600pt;}
.y4a{bottom:606.039200pt;}
.y114{bottom:606.193200pt;}
.y8f{bottom:608.217733pt;}
.y138{bottom:610.532533pt;}
.y6{bottom:613.052847pt;}
.y168{bottom:617.875867pt;}
.y6c{bottom:619.178533pt;}
.yf4{bottom:619.948400pt;}
.yb2{bottom:622.824933pt;}
.yd3{bottom:624.056267pt;}
.y49{bottom:624.299200pt;}
.y113{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.y137{bottom:625.064533pt;}
.y8e{bottom:626.624400pt;}
.y167{bottom:632.407867pt;}
.yf3{bottom:638.208400pt;}
.y136{bottom:639.596533pt;}
.yd2{bottom:640.989600pt;}
.y48{bottom:642.559200pt;}
.y23{bottom:642.845200pt;}
.y112{bottom:643.006533pt;}
.y6b{bottom:643.178533pt;}
.y8d{bottom:645.031067pt;}
.y36{bottom:645.859867pt;}
.y166{bottom:646.939867pt;}
.y135{bottom:654.128533pt;}
.yd1{bottom:657.922933pt;}
.y47{bottom:660.819200pt;}
.y111{bottom:661.413200pt;}
.y165{bottom:661.471867pt;}
.y8c{bottom:663.437733pt;}
.yf2{bottom:664.034133pt;}
.y134{bottom:668.660533pt;}
.yb1{bottom:669.417323pt;}
.yd0{bottom:674.856267pt;}
.y164{bottom:676.003867pt;}
.y46{bottom:679.079200pt;}
.y35{bottom:679.459867pt;}
.y110{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.yf1{bottom:680.767467pt;}
.yb0{bottom:682.881728pt;}
.y133{bottom:683.192533pt;}
.y163{bottom:690.535867pt;}
.ycf{bottom:691.789600pt;}
.yaf{bottom:696.346133pt;}
.y45{bottom:697.339200pt;}
.yf0{bottom:697.500800pt;}
.y8b{bottom:697.711867pt;}
.y132{bottom:697.724533pt;}
.y3{bottom:697.909527pt;}
.y10f{bottom:698.226533pt;}
.y6a{bottom:698.959867pt;}
.y162{bottom:705.067867pt;}
.y131{bottom:712.256533pt;}
.yae{bottom:713.597467pt;}
.yef{bottom:714.234133pt;}
.y44{bottom:715.599200pt;}
.yce{bottom:716.633200pt;}
.y69{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y161{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y130{bottom:726.788533pt;}
.yee{bottom:730.967467pt;}
.y43{bottom:733.859200pt;}
.y160{bottom:734.131867pt;}
.ycd{bottom:735.039867pt;}
.y68{bottom:735.479867pt;}
.y12f{bottom:741.320533pt;}
.y34{bottom:746.659867pt;}
.yed{bottom:747.700800pt;}
.y15f{bottom:748.663867pt;}
.y42{bottom:752.119200pt;}
.y8a{bottom:753.446533pt;}
.y67{bottom:753.739867pt;}
.y64{bottom:753.861200pt;}
.y12e{bottom:755.852533pt;}
.y15e{bottom:763.195867pt;}
.ybb{bottom:764.772541pt;}
.y89{bottom:771.853200pt;}
.y66{bottom:771.999867pt;}
.yad{bottom:772.430933pt;}
.y15d{bottom:777.727867pt;}
.yba{bottom:780.134000pt;}
.y33{bottom:780.259867pt;}
.y41{bottom:786.259867pt;}
.y65{bottom:790.259867pt;}
.y15c{bottom:792.259867pt;}
.y40{bottom:846.236267pt;}
.h6{height:24.841007pt;}
.h12{height:25.375000pt;}
.h1b{height:26.934727pt;}
.h7{height:27.946133pt;}
.h1a{height:28.516532pt;}
.h1e{height:31.043574pt;}
.h5{height:31.051259pt;}
.h4{height:34.156385pt;}
.h1d{height:34.253809pt;}
.h8{height:34.777410pt;}
.h16{height:38.062500pt;}
.h15{height:38.812500pt;}
.h1c{height:38.938125pt;}
.h1f{height:42.291667pt;}
.he{height:43.283854pt;}
.h3{height:43.471763pt;}
.hf{height:46.520833pt;}
.h17{height:50.750000pt;}
.h11{height:56.062500pt;}
.h18{height:64.687500pt;}
.h13{height:77.929688pt;}
.h10{height:80.354167pt;}
.h14{height:88.812500pt;}
.hb{height:153.125000pt;}
.hd{height:188.875000pt;}
.hc{height:315.364583pt;}
.h19{height:325.328000pt;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.ha{height:888.000000pt;}
.h9{height:888.189333pt;}
.w4{width:411.968000pt;}
.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;}
.x13{left:41.574800pt;}
.x19{left:53.574800pt;}
.x18{left:68.031467pt;}
.x8{left:71.294000pt;}
.x11{left:76.518133pt;}
.x20{left:86.929067pt;}
.x12{left:101.510133pt;}
.x2{left:103.933719pt;}
.x9{left:120.852667pt;}
.xf{left:128.628800pt;}
.x10{left:138.074133pt;}
.x15{left:143.622000pt;}
.x23{left:161.235467pt;}
.x1f{left:162.519600pt;}
.x7{left:169.238000pt;}
.xb{left:185.892267pt;}
.x1b{left:187.853200pt;}
.xc{left:191.794933pt;}
.xe{left:213.842133pt;}
.xa{left:250.242000pt;}
.x24{left:256.371467pt;}
.xd{left:273.007467pt;}
.x27{left:281.763467pt;}
.x22{left:286.083467pt;}
.x4{left:305.871665pt;}
.x21{left:317.307467pt;}
.x26{left:359.871467pt;}
.x14{left:361.852267pt;}
.x25{left:378.831467pt;}
.x28{left:392.931467pt;}
.x5{left:399.557467pt;}
.x1d{left:404.590990pt;}
.x1a{left:409.967467pt;}
.x1e{left:415.704800pt;}
.x1c{left:418.469467pt;}
.x6{left:427.691333pt;}
.x16{left:564.376400pt;}
.x17{left:570.344267pt;}
}




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