
    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_169d6079d1aec7413397d0ac.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_fbfbd15cea112290a482d2df.woff2')format("woff");}.ff2{font-family:ff2;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: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_74bfc37a924d79d746d6f4d3.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_87a3dc1daa40b9131d2c77f5.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_c0b61d12dba9cc7515b7598a.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_6194e8acd84d557f43c37b6b.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_76ae3b0de99116e4d914fea5.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_c7f5f5ddf40ef9b1b52398c3.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_3f33c88b1f83874e29a2680f.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_b7d73953b603bcae5819f425.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_82df35a4a522639291848747.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_71ffbbc23453d2697f4935f2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_a6f3e81d6ed0842e919d257f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.690918;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_95755f892748ef9a818059f3.woff2')format("woff");}.fff{font-family:fff;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;}
.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;}
.ls8{letter-spacing:-1.638000px;}
.lsf{letter-spacing:-1.452000px;}
.ls9{letter-spacing:-0.990000px;}
.ls13{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.660000px;}
.ls7{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.468000px;}
.ls3{letter-spacing:-0.330000px;}
.lsa{letter-spacing:-0.312000px;}
.ls12{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.156000px;}
.ls4{letter-spacing:0.390000px;}
.ls11{letter-spacing:0.624000px;}
.lsd{letter-spacing:0.858000px;}
.lsc{letter-spacing:0.924000px;}
.ls14{letter-spacing:1.014000px;}
.ls6{letter-spacing:1.170000px;}
.ls10{letter-spacing:1.560000px;}
.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;}
.wsa{word-spacing:-20.340000px;}
.ws2{word-spacing:-14.916000px;}
.ws0{word-spacing:-14.678320px;}
.ws11{word-spacing:-14.586000px;}
.wsd{word-spacing:-14.388000px;}
.ws7{word-spacing:-12.204000px;}
.ws16{word-spacing:-1.560000px;}
.wsb{word-spacing:-1.170000px;}
.ws1a{word-spacing:-1.014000px;}
.ws17{word-spacing:-0.624000px;}
.ws8{word-spacing:-0.390000px;}
.ws14{word-spacing:-0.156000px;}
.ws1{word-spacing:0.000000px;}
.ws18{word-spacing:0.270000px;}
.ws12{word-spacing:0.312000px;}
.ws6{word-spacing:0.330000px;}
.ws9{word-spacing:0.468000px;}
.wsc{word-spacing:0.528000px;}
.ws13{word-spacing:0.660000px;}
.ws19{word-spacing:0.858000px;}
.ws10{word-spacing:0.990000px;}
.ws15{word-spacing:1.452000px;}
.wse{word-spacing:1.638000px;}
.wsf{word-spacing:7.854000px;}
._f{margin-left:-26.448000px;}
._10{margin-left:-15.153600px;}
._18{margin-left:-6.986517px;}
._13{margin-left:-5.915212px;}
._d{margin-left:-4.435200px;}
._11{margin-left:-2.860200px;}
._e{margin-left:-1.465200px;}
._8{width:1.885704px;}
._b{width:3.092555px;}
._1{width:4.978259px;}
._12{width:6.322800px;}
._6{width:7.542816px;}
._4{width:8.825095px;}
._14{width:10.473383px;}
._7{width:11.540508px;}
._3{width:12.860501px;}
._1a{width:14.958000px;}
._15{width:15.978600px;}
._17{width:17.130873px;}
._9{width:18.555327px;}
._16{width:19.817073px;}
._5{width:21.723310px;}
._19{width:23.357400px;}
._c{width:28.210132px;}
._a{width:46.199748px;}
._2{width:47.444313px;}
._0{width:769.805658px;}
.fc5{color:rgb(76,142,165);}
.fc2{color:rgb(65,160,17);}
.fc3{color:rgb(0,94,126);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(71,71,71);}
.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;}
.fs2{font-size:47.142600px;}
.fs1{font-size:51.856860px;}
.fs5{font-size:52.799712px;}
.fsf{font-size:54.000000px;}
.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;}
.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;}
.yd1{bottom:102.157350px;}
.y87{bottom:102.697800px;}
.yab{bottom:103.009950px;}
.yf2{bottom:109.599600px;}
.y3e{bottom:110.141400px;}
.y10f{bottom:112.300200px;}
.yd0{bottom:122.864850px;}
.y13f{bottom:122.912850px;}
.y86{bottom:123.240300px;}
.y1b{bottom:123.419327px;}
.yaa{bottom:123.717450px;}
.y3d{bottom:126.341400px;}
.y10e{bottom:128.648700px;}
.yf1{bottom:130.307100px;}
.y21{bottom:136.778700px;}
.y13e{bottom:139.261350px;}
.y28{bottom:142.439400px;}
.ycf{bottom:143.572350px;}
.y85{bottom:143.782800px;}
.y10d{bottom:144.997200px;}
.y3c{bottom:146.793900px;}
.yf0{bottom:151.014600px;}
.y13d{bottom:155.609850px;}
.y10c{bottom:161.345700px;}
.ya9{bottom:162.275850px;}
.y3b{bottom:162.993900px;}
.yce{bottom:164.279850px;}
.y84{bottom:164.325300px;}
.yef{bottom:171.722100px;}
.y13c{bottom:171.958350px;}
.y10b{bottom:177.694200px;}
.y3a{bottom:179.193900px;}
.y61{bottom:183.344100px;}
.y27{bottom:184.431900px;}
.y83{bottom:184.867800px;}
.ycd{bottom:184.987350px;}
.y13b{bottom:188.306850px;}
.ya8{bottom:189.275850px;}
.yee{bottom:192.429600px;}
.y1a{bottom:192.612878px;}
.y10a{bottom:194.042700px;}
.y39{bottom:195.393900px;}
.y19{bottom:202.630680px;}
.y60{bottom:204.051600px;}
.y13a{bottom:204.655350px;}
.y82{bottom:205.410300px;}
.y26{bottom:205.436400px;}
.ycc{bottom:205.694850px;}
.y38{bottom:211.593900px;}
.y18{bottom:212.648483px;}
.yed{bottom:213.137100px;}
.y139{bottom:221.003850px;}
.y17{bottom:222.678071px;}
.y5f{bottom:224.759100px;}
.y81{bottom:225.952800px;}
.ycb{bottom:226.402350px;}
.y25{bottom:226.440900px;}
.y37{bottom:227.793900px;}
.y109{bottom:228.250950px;}
.y16{bottom:232.695874px;}
.yec{bottom:233.844600px;}
.y138{bottom:237.352350px;}
.y15{bottom:242.725462px;}
.y5e{bottom:245.466600px;}
.y80{bottom:246.495300px;}
.yca{bottom:247.109850px;}
.ya7{bottom:252.224850px;}
.y14{bottom:252.743264px;}
.y137{bottom:253.700850px;}
.y13{bottom:262.761067px;}
.y5d{bottom:266.174100px;}
.y7f{bottom:267.037800px;}
.yc9{bottom:267.817350px;}
.y136{bottom:270.049350px;}
.yeb{bottom:272.405100px;}
.ya6{bottom:272.767350px;}
.y12{bottom:272.790655px;}
.y11{bottom:282.808457px;}
.y30{bottom:284.434200px;}
.y135{bottom:286.397850px;}
.y5c{bottom:286.881600px;}
.y7e{bottom:287.580300px;}
.yc8{bottom:288.524850px;}
.y108{bottom:290.817450px;}
.y10{bottom:292.838046px;}
.yea{bottom:293.112600px;}
.ya5{bottom:293.309850px;}
.y134{bottom:302.746350px;}
.yf{bottom:302.855848px;}
.y2f{bottom:305.438700px;}
.y5b{bottom:307.589100px;}
.y7d{bottom:308.122800px;}
.yc7{bottom:309.232350px;}
.y107{bottom:311.524950px;}
.ye{bottom:312.873651px;}
.ye9{bottom:313.820100px;}
.ya4{bottom:313.852350px;}
.y133{bottom:319.094850px;}
.y2e{bottom:326.443200px;}
.y5a{bottom:328.296600px;}
.y7c{bottom:328.665300px;}
.yc6{bottom:329.939850px;}
.yd{bottom:330.893909px;}
.y106{bottom:332.232450px;}
.ya3{bottom:334.394850px;}
.ye8{bottom:334.527600px;}
.y132{bottom:335.443350px;}
.y2d{bottom:347.447700px;}
.y59{bottom:349.004100px;}
.y7b{bottom:349.207800px;}
.yc5{bottom:350.647350px;}
.y131{bottom:351.791850px;}
.y105{bottom:352.939950px;}
.ya2{bottom:354.937350px;}
.ye7{bottom:355.235100px;}
.y130{bottom:368.140350px;}
.y2c{bottom:368.452200px;}
.y58{bottom:369.711600px;}
.y7a{bottom:369.750300px;}
.yc4{bottom:371.354850px;}
.y104{bottom:373.647450px;}
.ya1{bottom:375.479850px;}
.ye6{bottom:375.942600px;}
.y12f{bottom:384.488850px;}
.y2b{bottom:389.456700px;}
.y79{bottom:390.292800px;}
.y57{bottom:390.419100px;}
.yc3{bottom:392.062350px;}
.y103{bottom:394.354950px;}
.ya0{bottom:396.022350px;}
.ye5{bottom:396.650100px;}
.y12e{bottom:400.837350px;}
.y78{bottom:410.835300px;}
.y56{bottom:411.126600px;}
.yc2{bottom:412.769850px;}
.y102{bottom:415.062450px;}
.y9f{bottom:416.564850px;}
.y12d{bottom:417.185850px;}
.ye4{bottom:417.357600px;}
.y77{bottom:431.377800px;}
.y55{bottom:431.834100px;}
.yc1{bottom:433.477350px;}
.y12c{bottom:433.534350px;}
.y101{bottom:435.769950px;}
.y9e{bottom:437.107350px;}
.ye3{bottom:438.065100px;}
.yc{bottom:440.641882px;}
.y12b{bottom:449.882850px;}
.y76{bottom:451.920300px;}
.y54{bottom:452.541600px;}
.yc0{bottom:454.184850px;}
.y100{bottom:456.477450px;}
.y9d{bottom:457.649850px;}
.ye2{bottom:458.772600px;}
.y12a{bottom:466.231350px;}
.y75{bottom:472.462800px;}
.y53{bottom:473.249100px;}
.ybf{bottom:474.892350px;}
.y2a{bottom:477.056700px;}
.yff{bottom:477.184950px;}
.y9c{bottom:478.192350px;}
.ye1{bottom:479.480100px;}
.y129{bottom:482.579850px;}
.y74{bottom:493.005300px;}
.y52{bottom:493.956600px;}
.ybe{bottom:495.599850px;}
.yfe{bottom:497.892450px;}
.y9b{bottom:498.734850px;}
.y128{bottom:498.928350px;}
.ye0{bottom:500.187600px;}
.y29{bottom:511.256700px;}
.y73{bottom:513.547800px;}
.y51{bottom:514.664100px;}
.y127{bottom:515.276850px;}
.ybd{bottom:516.307350px;}
.yfd{bottom:518.599950px;}
.y9a{bottom:519.277350px;}
.ydf{bottom:520.895100px;}
.y126{bottom:531.625350px;}
.y72{bottom:534.090300px;}
.y50{bottom:535.371600px;}
.ybc{bottom:537.014850px;}
.y154{bottom:538.369650px;}
.yfc{bottom:539.307450px;}
.y99{bottom:539.819850px;}
.yde{bottom:541.602600px;}
.y125{bottom:547.973850px;}
.y71{bottom:554.632800px;}
.y4f{bottom:556.079100px;}
.y153{bottom:556.851150px;}
.ybb{bottom:557.722350px;}
.yfb{bottom:560.014950px;}
.y98{bottom:560.362350px;}
.ydd{bottom:562.310100px;}
.y124{bottom:564.322350px;}
.y152{bottom:573.199650px;}
.y70{bottom:575.175300px;}
.y4e{bottom:576.786600px;}
.yba{bottom:578.429850px;}
.y123{bottom:580.670850px;}
.yfa{bottom:580.722450px;}
.y97{bottom:580.904850px;}
.ydc{bottom:583.017600px;}
.y151{bottom:589.548150px;}
.y6f{bottom:595.717800px;}
.y122{bottom:597.019350px;}
.y4d{bottom:597.494100px;}
.yb9{bottom:599.137350px;}
.yf9{bottom:601.429950px;}
.y96{bottom:601.447350px;}
.yb{bottom:602.824212px;}
.ydb{bottom:603.725100px;}
.y150{bottom:605.896650px;}
.y121{bottom:613.367850px;}
.y6e{bottom:616.260300px;}
.y4c{bottom:618.201600px;}
.yb8{bottom:619.844850px;}
.y95{bottom:621.989850px;}
.yf8{bottom:622.137450px;}
.y14f{bottom:622.245150px;}
.ya{bottom:623.578742px;}
.yda{bottom:624.432600px;}
.y120{bottom:629.716350px;}
.y6d{bottom:636.802800px;}
.y9{bottom:636.931883px;}
.y14e{bottom:638.593650px;}
.y4b{bottom:638.909100px;}
.yb7{bottom:640.552350px;}
.y94{bottom:642.532350px;}
.yf7{bottom:642.844950px;}
.yd9{bottom:645.140100px;}
.y11f{bottom:646.064850px;}
.y14d{bottom:654.942150px;}
.y24{bottom:657.176850px;}
.y6c{bottom:657.345300px;}
.y4a{bottom:659.616600px;}
.yb6{bottom:661.259850px;}
.y11e{bottom:662.413350px;}
.y8{bottom:662.954598px;}
.y93{bottom:663.074850px;}
.yf6{bottom:663.552450px;}
.yd8{bottom:665.847600px;}
.y14c{bottom:671.290650px;}
.y7{bottom:676.319525px;}
.y6b{bottom:677.887800px;}
.y11d{bottom:678.761850px;}
.y49{bottom:680.324100px;}
.yb5{bottom:681.967350px;}
.y92{bottom:683.617350px;}
.yf5{bottom:684.259950px;}
.yd7{bottom:686.555100px;}
.y6{bottom:689.684452px;}
.y11c{bottom:695.110350px;}
.y6a{bottom:698.430300px;}
.y14b{bottom:700.396650px;}
.y48{bottom:701.031600px;}
.yb4{bottom:702.674850px;}
.y5{bottom:703.049379px;}
.y91{bottom:704.159850px;}
.yf4{bottom:704.967450px;}
.yd6{bottom:707.262600px;}
.y11b{bottom:711.458850px;}
.y14a{bottom:718.878150px;}
.y69{bottom:718.972800px;}
.y47{bottom:721.739100px;}
.y62{bottom:721.759950px;}
.y23{bottom:723.200850px;}
.yb3{bottom:723.382350px;}
.y90{bottom:724.702350px;}
.y36{bottom:726.592350px;}
.y11a{bottom:727.807350px;}
.yd5{bottom:730.082100px;}
.y149{bottom:735.226650px;}
.y68{bottom:739.515300px;}
.y46{bottom:742.446600px;}
.yf3{bottom:743.525850px;}
.yb2{bottom:744.089850px;}
.y119{bottom:744.155850px;}
.y8f{bottom:745.244850px;}
.y148{bottom:751.575150px;}
.y67{bottom:760.057800px;}
.y118{bottom:760.504350px;}
.y45{bottom:763.154100px;}
.y35{bottom:764.392350px;}
.yb1{bottom:764.797350px;}
.y4{bottom:765.336540px;}
.y8e{bottom:765.787350px;}
.y147{bottom:767.923650px;}
.y117{bottom:776.852850px;}
.yd4{bottom:777.569100px;}
.y66{bottom:780.600300px;}
.y44{bottom:783.861600px;}
.y146{bottom:784.272150px;}
.y3{bottom:785.148217px;}
.yb0{bottom:785.504850px;}
.y8d{bottom:786.329850px;}
.y116{bottom:793.201350px;}
.yd3{bottom:798.276600px;}
.y145{bottom:800.620650px;}
.y65{bottom:801.142800px;}
.y43{bottom:804.569100px;}
.yaf{bottom:806.212350px;}
.y8c{bottom:806.872350px;}
.y2{bottom:808.542733px;}
.y115{bottom:809.549850px;}
.y22{bottom:811.700850px;}
.y144{bottom:816.969150px;}
.yd2{bottom:818.984100px;}
.y64{bottom:821.685300px;}
.y42{bottom:825.276600px;}
.y114{bottom:825.898350px;}
.yae{bottom:826.919850px;}
.y8b{bottom:827.414850px;}
.y143{bottom:833.317650px;}
.y34{bottom:839.992350px;}
.y113{bottom:842.246850px;}
.y41{bottom:845.984100px;}
.yad{bottom:847.627350px;}
.y8a{bottom:847.957350px;}
.y142{bottom:849.666150px;}
.y63{bottom:857.542350px;}
.y112{bottom:858.595350px;}
.y141{bottom:866.014650px;}
.yac{bottom:868.334850px;}
.y89{bottom:868.499850px;}
.y111{bottom:874.943850px;}
.y33{bottom:877.792350px;}
.y140{bottom:882.363150px;}
.y40{bottom:884.542350px;}
.y88{bottom:889.042350px;}
.y110{bottom:891.292350px;}
.y3f{bottom:952.015800px;}
.h6{height:27.946133px;}
.h12{height:28.546875px;}
.h7{height:31.439400px;}
.h5{height:34.932667px;}
.h4{height:38.425933px;}
.h8{height:39.124587px;}
.h16{height:42.820312px;}
.h15{height:43.664062px;}
.he{height:48.694336px;}
.h3{height:48.905733px;}
.hf{height:52.335938px;}
.h1a{height:53.367188px;}
.h19{height:54.272461px;}
.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;}
.h2{height:992.222088px;}
.h0{height:992.820000px;}
.h1{height:993.000000px;}
.ha{height:999.000000px;}
.h9{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;}
.x13{left:46.771650px;}
.x19{left:60.271650px;}
.x18{left:76.535400px;}
.x8{left:80.205750px;}
.x1a{left:82.920900px;}
.x11{left:86.066400px;}
.x1c{left:97.795200px;}
.x12{left:114.182400px;}
.x2{left:116.925434px;}
.xe{left:127.811400px;}
.x9{left:135.959250px;}
.x15{left:161.574750px;}
.xf{left:178.482900px;}
.x1b{left:182.837250px;}
.x7{left:190.392750px;}
.xb{left:209.128800px;}
.xc{left:215.769300px;}
.x10{left:256.857900px;}
.xa{left:281.522250px;}
.xd{left:307.133400px;}
.x4{left:344.105623px;}
.x14{left:407.083800px;}
.x5{left:449.502150px;}
.x6{left:481.152750px;}
.x16{left:635.157450px;}
.x17{left:642.001350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-1.456000pt;}
.lsf{letter-spacing:-1.290667pt;}
.ls9{letter-spacing:-0.880000pt;}
.ls13{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.586667pt;}
.ls7{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.416000pt;}
.ls3{letter-spacing:-0.293333pt;}
.lsa{letter-spacing:-0.277333pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.138667pt;}
.ls4{letter-spacing:0.346667pt;}
.ls11{letter-spacing:0.554667pt;}
.lsd{letter-spacing:0.762667pt;}
.lsc{letter-spacing:0.821333pt;}
.ls14{letter-spacing:0.901333pt;}
.ls6{letter-spacing:1.040000pt;}
.ls10{letter-spacing:1.386667pt;}
.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;}
.wsa{word-spacing:-18.080000pt;}
.ws2{word-spacing:-13.258667pt;}
.ws0{word-spacing:-13.047395pt;}
.ws11{word-spacing:-12.965333pt;}
.wsd{word-spacing:-12.789333pt;}
.ws7{word-spacing:-10.848000pt;}
.ws16{word-spacing:-1.386667pt;}
.wsb{word-spacing:-1.040000pt;}
.ws1a{word-spacing:-0.901333pt;}
.ws17{word-spacing:-0.554667pt;}
.ws8{word-spacing:-0.346667pt;}
.ws14{word-spacing:-0.138667pt;}
.ws1{word-spacing:0.000000pt;}
.ws18{word-spacing:0.240000pt;}
.ws12{word-spacing:0.277333pt;}
.ws6{word-spacing:0.293333pt;}
.ws9{word-spacing:0.416000pt;}
.wsc{word-spacing:0.469333pt;}
.ws13{word-spacing:0.586667pt;}
.ws19{word-spacing:0.762667pt;}
.ws10{word-spacing:0.880000pt;}
.ws15{word-spacing:1.290667pt;}
.wse{word-spacing:1.456000pt;}
.wsf{word-spacing:6.981333pt;}
._f{margin-left:-23.509333pt;}
._10{margin-left:-13.469867pt;}
._18{margin-left:-6.210237pt;}
._13{margin-left:-5.257967pt;}
._d{margin-left:-3.942400pt;}
._11{margin-left:-2.542400pt;}
._e{margin-left:-1.302400pt;}
._8{width:1.676181pt;}
._b{width:2.748937pt;}
._1{width:4.425119pt;}
._12{width:5.620267pt;}
._6{width:6.704725pt;}
._4{width:7.844529pt;}
._14{width:9.309674pt;}
._7{width:10.258230pt;}
._3{width:11.431557pt;}
._1a{width:13.296000pt;}
._15{width:14.203200pt;}
._17{width:15.227442pt;}
._9{width:16.493624pt;}
._16{width:17.615176pt;}
._5{width:19.309609pt;}
._19{width:20.762133pt;}
._c{width:25.075673pt;}
._a{width:41.066443pt;}
._2{width:42.172722pt;}
._0{width:684.271696pt;}
.fsd{font-size:32.000000pt;}
.fs3{font-size:33.523627pt;}
.fs6{font-size:36.875989pt;}
.fs4{font-size:37.714080pt;}
.fs2{font-size:41.904533pt;}
.fs1{font-size:46.094987pt;}
.fs5{font-size:46.933077pt;}
.fsf{font-size:48.000000pt;}
.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;}
.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;}
.yd1{bottom:90.806533pt;}
.y87{bottom:91.286933pt;}
.yab{bottom:91.564400pt;}
.yf2{bottom:97.421867pt;}
.y3e{bottom:97.903467pt;}
.y10f{bottom:99.822400pt;}
.yd0{bottom:109.213200pt;}
.y13f{bottom:109.255867pt;}
.y86{bottom:109.546933pt;}
.y1b{bottom:109.706068pt;}
.yaa{bottom:109.971067pt;}
.y3d{bottom:112.303467pt;}
.y10e{bottom:114.354400pt;}
.yf1{bottom:115.828533pt;}
.y21{bottom:121.581067pt;}
.y13e{bottom:123.787867pt;}
.y28{bottom:126.612800pt;}
.ycf{bottom:127.619867pt;}
.y85{bottom:127.806933pt;}
.y10d{bottom:128.886400pt;}
.y3c{bottom:130.483467pt;}
.yf0{bottom:134.235200pt;}
.y13d{bottom:138.319867pt;}
.y10c{bottom:143.418400pt;}
.ya9{bottom:144.245200pt;}
.y3b{bottom:144.883467pt;}
.yce{bottom:146.026533pt;}
.y84{bottom:146.066933pt;}
.yef{bottom:152.641867pt;}
.y13c{bottom:152.851867pt;}
.y10b{bottom:157.950400pt;}
.y3a{bottom:159.283467pt;}
.y61{bottom:162.972533pt;}
.y27{bottom:163.939467pt;}
.y83{bottom:164.326933pt;}
.ycd{bottom:164.433200pt;}
.y13b{bottom:167.383867pt;}
.ya8{bottom:168.245200pt;}
.yee{bottom:171.048533pt;}
.y1a{bottom:171.211447pt;}
.y10a{bottom:172.482400pt;}
.y39{bottom:173.683467pt;}
.y19{bottom:180.116160pt;}
.y60{bottom:181.379200pt;}
.y13a{bottom:181.915867pt;}
.y82{bottom:182.586933pt;}
.y26{bottom:182.610133pt;}
.ycc{bottom:182.839867pt;}
.y38{bottom:188.083467pt;}
.y18{bottom:189.020874pt;}
.yed{bottom:189.455200pt;}
.y139{bottom:196.447867pt;}
.y17{bottom:197.936063pt;}
.y5f{bottom:199.785867pt;}
.y81{bottom:200.846933pt;}
.ycb{bottom:201.246533pt;}
.y25{bottom:201.280800pt;}
.y37{bottom:202.483467pt;}
.y109{bottom:202.889733pt;}
.y16{bottom:206.840777pt;}
.yec{bottom:207.861867pt;}
.y138{bottom:210.979867pt;}
.y15{bottom:215.755966pt;}
.y5e{bottom:218.192533pt;}
.y80{bottom:219.106933pt;}
.yca{bottom:219.653200pt;}
.ya7{bottom:224.199867pt;}
.y14{bottom:224.660679pt;}
.y137{bottom:225.511867pt;}
.y13{bottom:233.565393pt;}
.y5d{bottom:236.599200pt;}
.y7f{bottom:237.366933pt;}
.yc9{bottom:238.059867pt;}
.y136{bottom:240.043867pt;}
.yeb{bottom:242.137867pt;}
.ya6{bottom:242.459867pt;}
.y12{bottom:242.480582pt;}
.y11{bottom:251.385295pt;}
.y30{bottom:252.830400pt;}
.y135{bottom:254.575867pt;}
.y5c{bottom:255.005867pt;}
.y7e{bottom:255.626933pt;}
.yc8{bottom:256.466533pt;}
.y108{bottom:258.504400pt;}
.y10{bottom:260.300485pt;}
.yea{bottom:260.544533pt;}
.ya5{bottom:260.719867pt;}
.y134{bottom:269.107867pt;}
.yf{bottom:269.205198pt;}
.y2f{bottom:271.501067pt;}
.y5b{bottom:273.412533pt;}
.y7d{bottom:273.886933pt;}
.yc7{bottom:274.873200pt;}
.y107{bottom:276.911067pt;}
.ye{bottom:278.109912pt;}
.ye9{bottom:278.951200pt;}
.ya4{bottom:278.979867pt;}
.y133{bottom:283.639867pt;}
.y2e{bottom:290.171733pt;}
.y5a{bottom:291.819200pt;}
.y7c{bottom:292.146933pt;}
.yc6{bottom:293.279867pt;}
.yd{bottom:294.127919pt;}
.y106{bottom:295.317733pt;}
.ya3{bottom:297.239867pt;}
.ye8{bottom:297.357867pt;}
.y132{bottom:298.171867pt;}
.y2d{bottom:308.842400pt;}
.y59{bottom:310.225867pt;}
.y7b{bottom:310.406933pt;}
.yc5{bottom:311.686533pt;}
.y131{bottom:312.703867pt;}
.y105{bottom:313.724400pt;}
.ya2{bottom:315.499867pt;}
.ye7{bottom:315.764533pt;}
.y130{bottom:327.235867pt;}
.y2c{bottom:327.513067pt;}
.y58{bottom:328.632533pt;}
.y7a{bottom:328.666933pt;}
.yc4{bottom:330.093200pt;}
.y104{bottom:332.131067pt;}
.ya1{bottom:333.759867pt;}
.ye6{bottom:334.171200pt;}
.y12f{bottom:341.767867pt;}
.y2b{bottom:346.183733pt;}
.y79{bottom:346.926933pt;}
.y57{bottom:347.039200pt;}
.yc3{bottom:348.499867pt;}
.y103{bottom:350.537733pt;}
.ya0{bottom:352.019867pt;}
.ye5{bottom:352.577867pt;}
.y12e{bottom:356.299867pt;}
.y78{bottom:365.186933pt;}
.y56{bottom:365.445867pt;}
.yc2{bottom:366.906533pt;}
.y102{bottom:368.944400pt;}
.y9f{bottom:370.279867pt;}
.y12d{bottom:370.831867pt;}
.ye4{bottom:370.984533pt;}
.y77{bottom:383.446933pt;}
.y55{bottom:383.852533pt;}
.yc1{bottom:385.313200pt;}
.y12c{bottom:385.363867pt;}
.y101{bottom:387.351067pt;}
.y9e{bottom:388.539867pt;}
.ye3{bottom:389.391200pt;}
.yc{bottom:391.681673pt;}
.y12b{bottom:399.895867pt;}
.y76{bottom:401.706933pt;}
.y54{bottom:402.259200pt;}
.yc0{bottom:403.719867pt;}
.y100{bottom:405.757733pt;}
.y9d{bottom:406.799867pt;}
.ye2{bottom:407.797867pt;}
.y12a{bottom:414.427867pt;}
.y75{bottom:419.966933pt;}
.y53{bottom:420.665867pt;}
.ybf{bottom:422.126533pt;}
.y2a{bottom:424.050400pt;}
.yff{bottom:424.164400pt;}
.y9c{bottom:425.059867pt;}
.ye1{bottom:426.204533pt;}
.y129{bottom:428.959867pt;}
.y74{bottom:438.226933pt;}
.y52{bottom:439.072533pt;}
.ybe{bottom:440.533200pt;}
.yfe{bottom:442.571067pt;}
.y9b{bottom:443.319867pt;}
.y128{bottom:443.491867pt;}
.ye0{bottom:444.611200pt;}
.y29{bottom:454.450400pt;}
.y73{bottom:456.486933pt;}
.y51{bottom:457.479200pt;}
.y127{bottom:458.023867pt;}
.ybd{bottom:458.939867pt;}
.yfd{bottom:460.977733pt;}
.y9a{bottom:461.579867pt;}
.ydf{bottom:463.017867pt;}
.y126{bottom:472.555867pt;}
.y72{bottom:474.746933pt;}
.y50{bottom:475.885867pt;}
.ybc{bottom:477.346533pt;}
.y154{bottom:478.550800pt;}
.yfc{bottom:479.384400pt;}
.y99{bottom:479.839867pt;}
.yde{bottom:481.424533pt;}
.y125{bottom:487.087867pt;}
.y71{bottom:493.006933pt;}
.y4f{bottom:494.292533pt;}
.y153{bottom:494.978800pt;}
.ybb{bottom:495.753200pt;}
.yfb{bottom:497.791067pt;}
.y98{bottom:498.099867pt;}
.ydd{bottom:499.831200pt;}
.y124{bottom:501.619867pt;}
.y152{bottom:509.510800pt;}
.y70{bottom:511.266933pt;}
.y4e{bottom:512.699200pt;}
.yba{bottom:514.159867pt;}
.y123{bottom:516.151867pt;}
.yfa{bottom:516.197733pt;}
.y97{bottom:516.359867pt;}
.ydc{bottom:518.237867pt;}
.y151{bottom:524.042800pt;}
.y6f{bottom:529.526933pt;}
.y122{bottom:530.683867pt;}
.y4d{bottom:531.105867pt;}
.yb9{bottom:532.566533pt;}
.yf9{bottom:534.604400pt;}
.y96{bottom:534.619867pt;}
.yb{bottom:535.843744pt;}
.ydb{bottom:536.644533pt;}
.y150{bottom:538.574800pt;}
.y121{bottom:545.215867pt;}
.y6e{bottom:547.786933pt;}
.y4c{bottom:549.512533pt;}
.yb8{bottom:550.973200pt;}
.y95{bottom:552.879867pt;}
.yf8{bottom:553.011067pt;}
.y14f{bottom:553.106800pt;}
.ya{bottom:554.292215pt;}
.yda{bottom:555.051200pt;}
.y120{bottom:559.747867pt;}
.y6d{bottom:566.046933pt;}
.y9{bottom:566.161674pt;}
.y14e{bottom:567.638800pt;}
.y4b{bottom:567.919200pt;}
.yb7{bottom:569.379867pt;}
.y94{bottom:571.139867pt;}
.yf7{bottom:571.417733pt;}
.yd9{bottom:573.457867pt;}
.y11f{bottom:574.279867pt;}
.y14d{bottom:582.170800pt;}
.y24{bottom:584.157200pt;}
.y6c{bottom:584.306933pt;}
.y4a{bottom:586.325867pt;}
.yb6{bottom:587.786533pt;}
.y11e{bottom:588.811867pt;}
.y8{bottom:589.292976pt;}
.y93{bottom:589.399867pt;}
.yf6{bottom:589.824400pt;}
.yd8{bottom:591.864533pt;}
.y14c{bottom:596.702800pt;}
.y7{bottom:601.172911pt;}
.y6b{bottom:602.566933pt;}
.y11d{bottom:603.343867pt;}
.y49{bottom:604.732533pt;}
.yb5{bottom:606.193200pt;}
.y92{bottom:607.659867pt;}
.yf5{bottom:608.231067pt;}
.yd7{bottom:610.271200pt;}
.y6{bottom:613.052847pt;}
.y11c{bottom:617.875867pt;}
.y6a{bottom:620.826933pt;}
.y14b{bottom:622.574800pt;}
.y48{bottom:623.139200pt;}
.yb4{bottom:624.599867pt;}
.y5{bottom:624.932782pt;}
.y91{bottom:625.919867pt;}
.yf4{bottom:626.637733pt;}
.yd6{bottom:628.677867pt;}
.y11b{bottom:632.407867pt;}
.y14a{bottom:639.002800pt;}
.y69{bottom:639.086933pt;}
.y47{bottom:641.545867pt;}
.y62{bottom:641.564400pt;}
.y23{bottom:642.845200pt;}
.yb3{bottom:643.006533pt;}
.y90{bottom:644.179867pt;}
.y36{bottom:645.859867pt;}
.y11a{bottom:646.939867pt;}
.yd5{bottom:648.961867pt;}
.y149{bottom:653.534800pt;}
.y68{bottom:657.346933pt;}
.y46{bottom:659.952533pt;}
.yf3{bottom:660.911867pt;}
.yb2{bottom:661.413200pt;}
.y119{bottom:661.471867pt;}
.y8f{bottom:662.439867pt;}
.y148{bottom:668.066800pt;}
.y67{bottom:675.606933pt;}
.y118{bottom:676.003867pt;}
.y45{bottom:678.359200pt;}
.y35{bottom:679.459867pt;}
.yb1{bottom:679.819867pt;}
.y4{bottom:680.299146pt;}
.y8e{bottom:680.699867pt;}
.y147{bottom:682.598800pt;}
.y117{bottom:690.535867pt;}
.yd4{bottom:691.172533pt;}
.y66{bottom:693.866933pt;}
.y44{bottom:696.765867pt;}
.y146{bottom:697.130800pt;}
.y3{bottom:697.909527pt;}
.yb0{bottom:698.226533pt;}
.y8d{bottom:698.959867pt;}
.y116{bottom:705.067867pt;}
.yd3{bottom:709.579200pt;}
.y145{bottom:711.662800pt;}
.y65{bottom:712.126933pt;}
.y43{bottom:715.172533pt;}
.yaf{bottom:716.633200pt;}
.y8c{bottom:717.219867pt;}
.y2{bottom:718.704651pt;}
.y115{bottom:719.599867pt;}
.y22{bottom:721.511867pt;}
.y144{bottom:726.194800pt;}
.yd2{bottom:727.985867pt;}
.y64{bottom:730.386933pt;}
.y42{bottom:733.579200pt;}
.y114{bottom:734.131867pt;}
.yae{bottom:735.039867pt;}
.y8b{bottom:735.479867pt;}
.y143{bottom:740.726800pt;}
.y34{bottom:746.659867pt;}
.y113{bottom:748.663867pt;}
.y41{bottom:751.985867pt;}
.yad{bottom:753.446533pt;}
.y8a{bottom:753.739867pt;}
.y142{bottom:755.258800pt;}
.y63{bottom:762.259867pt;}
.y112{bottom:763.195867pt;}
.y141{bottom:769.790800pt;}
.yac{bottom:771.853200pt;}
.y89{bottom:771.999867pt;}
.y111{bottom:777.727867pt;}
.y33{bottom:780.259867pt;}
.y140{bottom:784.322800pt;}
.y40{bottom:786.259867pt;}
.y88{bottom:790.259867pt;}
.y110{bottom:792.259867pt;}
.y3f{bottom:846.236267pt;}
.h6{height:24.841007pt;}
.h12{height:25.375000pt;}
.h7{height:27.946133pt;}
.h5{height:31.051259pt;}
.h4{height:34.156385pt;}
.h8{height:34.777410pt;}
.h16{height:38.062500pt;}
.h15{height:38.812500pt;}
.he{height:43.283854pt;}
.h3{height:43.471763pt;}
.hf{height:46.520833pt;}
.h1a{height:47.437500pt;}
.h19{height:48.242188pt;}
.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;}
.h2{height:881.975189pt;}
.h0{height:882.506667pt;}
.h1{height:882.666667pt;}
.ha{height:888.000000pt;}
.h9{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;}
.x13{left:41.574800pt;}
.x19{left:53.574800pt;}
.x18{left:68.031467pt;}
.x8{left:71.294000pt;}
.x1a{left:73.707467pt;}
.x11{left:76.503467pt;}
.x1c{left:86.929067pt;}
.x12{left:101.495467pt;}
.x2{left:103.933719pt;}
.xe{left:113.610133pt;}
.x9{left:120.852667pt;}
.x15{left:143.622000pt;}
.xf{left:158.651467pt;}
.x1b{left:162.522000pt;}
.x7{left:169.238000pt;}
.xb{left:185.892267pt;}
.xc{left:191.794933pt;}
.x10{left:228.318133pt;}
.xa{left:250.242000pt;}
.xd{left:273.007467pt;}
.x4{left:305.871665pt;}
.x14{left:361.852267pt;}
.x5{left:399.557467pt;}
.x6{left:427.691333pt;}
.x16{left:564.584400pt;}
.x17{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; }
  