
    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_d3ef849647cb741ce33e11a6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9049c7be7c9b0b3bb7a8d3fa.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_7b55f238582e695be5d5cd70.woff')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_e11d4ad4a52d4b9d206a0040.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f743cde785f25ba7ebbb2b31.woff')format("woff");}.ff5{font-family:ff5;line-height:0.724121;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_02908863237503baa8dcec60.woff')format("woff");}.ff6{font-family:ff6;line-height:1.092773;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_0749242aee9279a1ac764e11.woff')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_afac4209779ac86a0c7a2181.woff')format("woff");}.ff8{font-family:ff8;line-height:1.059082;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_c5bfa5c46af907b84ba6f499.woff')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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_cde08d453577abe2cc37b1ce.woff')format("woff");}.ffa{font-family:ffa;line-height:0.764160;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);}
.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(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.594000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:112.590000px;}
.ls1{letter-spacing:118.908000px;}
.ls2{letter-spacing:121.176000px;}
.ls5{letter-spacing:149.796000px;}
.ls3{letter-spacing:179.226000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-18.216000px;}
.ws0{word-spacing:-14.904000px;}
.ws10{word-spacing:-14.796000px;}
.ws21{word-spacing:-11.934000px;}
.ws29{word-spacing:-0.720000px;}
.wsb{word-spacing:-0.660000px;}
.ws1{word-spacing:0.000000px;}
.ws26{word-spacing:4.620000px;}
.ws25{word-spacing:4.686000px;}
.ws4{word-spacing:6.318000px;}
.ws7{word-spacing:7.392000px;}
.ws8{word-spacing:8.052000px;}
.ws6{word-spacing:10.824000px;}
.wse{word-spacing:11.022000px;}
.ws23{word-spacing:11.616000px;}
.ws28{word-spacing:14.220000px;}
.ws9{word-spacing:16.566000px;}
.wsc{word-spacing:17.556000px;}
.ws3{word-spacing:20.790000px;}
.ws2{word-spacing:20.988000px;}
.wsa{word-spacing:24.024000px;}
.wsd{word-spacing:26.466000px;}
.ws24{word-spacing:26.598000px;}
.ws22{word-spacing:37.290000px;}
.ws15{word-spacing:59.076000px;}
.ws13{word-spacing:59.940000px;}
.ws1e{word-spacing:60.210000px;}
.ws1b{word-spacing:60.804000px;}
.ws19{word-spacing:61.074000px;}
.ws27{word-spacing:64.680000px;}
.ws1c{word-spacing:78.570000px;}
.ws11{word-spacing:88.614000px;}
.ws16{word-spacing:88.884000px;}
.ws1f{word-spacing:91.638000px;}
.ws18{word-spacing:97.794000px;}
.ws1d{word-spacing:106.380000px;}
.ws17{word-spacing:112.050000px;}
.ws14{word-spacing:130.518000px;}
.ws12{word-spacing:131.382000px;}
.wsf{word-spacing:134.730000px;}
.ws20{word-spacing:135.000000px;}
.ws1a{word-spacing:136.836000px;}
._17{margin-left:-9.919800px;}
._7{margin-left:-8.656200px;}
._4{margin-left:-6.714000px;}
._8{margin-left:-5.319000px;}
._0{margin-left:-3.486000px;}
._9{margin-left:-2.333400px;}
._6{margin-left:-1.224000px;}
._1{width:1.587241px;}
._d{width:3.166800px;}
._a{width:4.320000px;}
._e{width:5.395200px;}
._10{width:6.716400px;}
._16{width:7.757400px;}
._b{width:8.800800px;}
._c{width:10.639200px;}
._14{width:11.985600px;}
._1a{width:13.213200px;}
._15{width:14.256000px;}
._11{width:15.721200px;}
._1b{width:16.856400px;}
._20{width:19.371000px;}
._f{width:20.400600px;}
._18{width:22.083600px;}
._1d{width:23.496000px;}
._5{width:24.576000px;}
._19{width:26.369400px;}
._26{width:28.531800px;}
._22{width:30.234600px;}
._23{width:31.347000px;}
._21{width:33.036000px;}
._43{width:34.260600px;}
._24{width:36.071400px;}
._25{width:37.399800px;}
._42{width:40.680000px;}
._1f{width:49.427400px;}
._13{width:51.573000px;}
._12{width:52.704000px;}
._41{width:63.208200px;}
._1e{width:65.835000px;}
._27{width:73.040759px;}
._32{width:75.600000px;}
._30{width:76.626000px;}
._3d{width:77.922000px;}
._1c{width:80.180159px;}
._37{width:83.322000px;}
._3c{width:84.942000px;}
._3e{width:86.076000px;}
._34{width:87.318000px;}
._40{width:88.387200px;}
._31{width:91.638000px;}
._29{width:93.366000px;}
._3b{width:101.952000px;}
._2f{width:104.274000px;}
._2d{width:106.164000px;}
._2c{width:112.590000px;}
._38{width:115.614000px;}
._35{width:118.368000px;}
._28{width:121.176000px;}
._3f{width:151.038000px;}
._33{width:152.064000px;}
._2{width:153.107843px;}
._3a{width:155.358000px;}
._39{width:163.350000px;}
._2a{width:179.226000px;}
._36{width:182.466000px;}
._3{width:183.490826px;}
._2b{width:187.848157px;}
._2e{width:189.324000px;}
.fc4{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:62.872800px;}
.fs8{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.fs0{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:56.875800px;}
.y1b{bottom:73.075800px;}
.y3{bottom:81.772500px;}
.ycc{bottom:118.761750px;}
.yb1{bottom:121.189050px;}
.y180{bottom:130.528800px;}
.ycb{bottom:138.264750px;}
.y128{bottom:139.598250px;}
.yb0{bottom:140.692050px;}
.y97{bottom:146.907900px;}
.y67{bottom:147.072900px;}
.y17f{bottom:149.278800px;}
.yca{bottom:157.767750px;}
.y127{bottom:159.101250px;}
.yaf{bottom:160.195050px;}
.y96{bottom:166.410900px;}
.y66{bottom:166.575900px;}
.y17e{bottom:168.028800px;}
.y14e{bottom:171.822750px;}
.yc9{bottom:177.270750px;}
.y126{bottom:178.604250px;}
.yf5{bottom:183.383850px;}
.y95{bottom:185.913900px;}
.y65{bottom:186.078900px;}
.y17d{bottom:186.778800px;}
.y14d{bottom:191.325750px;}
.yae{bottom:196.709550px;}
.yc8{bottom:196.773750px;}
.y125{bottom:198.107250px;}
.y94{bottom:205.416900px;}
.y64{bottom:205.581900px;}
.y17c{bottom:211.903800px;}
.yf4{bottom:214.990800px;}
.yad{bottom:216.212550px;}
.yc7{bottom:216.276750px;}
.y124{bottom:217.610250px;}
.y36{bottom:220.585800px;}
.y63{bottom:225.084900px;}
.y14c{bottom:227.840250px;}
.y17b{bottom:230.653800px;}
.yf3{bottom:231.190800px;}
.yac{bottom:235.715550px;}
.yc6{bottom:235.779750px;}
.y35{bottom:236.785800px;}
.y123{bottom:237.113250px;}
.y93{bottom:241.931400px;}
.y62{bottom:244.587900px;}
.yab{bottom:255.218550px;}
.yc5{bottom:255.282750px;}
.y17a{bottom:255.778800px;}
.y122{bottom:256.616250px;}
.yf2{bottom:258.028800px;}
.y92{bottom:261.434400px;}
.y61{bottom:264.090900px;}
.y14b{bottom:264.354750px;}
.yf1{bottom:274.228800px;}
.y179{bottom:274.528800px;}
.y34{bottom:275.976150px;}
.y121{bottom:276.119250px;}
.y91{bottom:280.937400px;}
.y60{bottom:283.593900px;}
.yc4{bottom:291.650550px;}
.yaa{bottom:291.733050px;}
.y120{bottom:295.622250px;}
.y33{bottom:295.776150px;}
.y178{bottom:299.653800px;}
.y90{bottom:300.440400px;}
.y14a{bottom:300.869250px;}
.yf0{bottom:301.066800px;}
.y5f{bottom:303.096900px;}
.yc3{bottom:311.153550px;}
.ya9{bottom:311.236050px;}
.y11f{bottom:315.125250px;}
.yef{bottom:317.266800px;}
.y177{bottom:318.403800px;}
.y8f{bottom:319.943400px;}
.y5e{bottom:322.599900px;}
.y32{bottom:328.330650px;}
.yc2{bottom:330.656550px;}
.ya8{bottom:330.739050px;}
.y11e{bottom:334.628250px;}
.y176{bottom:337.153800px;}
.y149{bottom:337.383750px;}
.y8e{bottom:339.446400px;}
.y5d{bottom:342.102900px;}
.yee{bottom:344.104800px;}
.y31{bottom:348.130650px;}
.yc1{bottom:350.159550px;}
.ya7{bottom:350.242050px;}
.y175{bottom:355.903800px;}
.y8d{bottom:358.949400px;}
.yed{bottom:360.304800px;}
.y5c{bottom:361.605900px;}
.y30{bottom:367.930650px;}
.yc0{bottom:369.662550px;}
.ya6{bottom:369.745050px;}
.y11d{bottom:371.142750px;}
.y148{bottom:373.898250px;}
.y174{bottom:374.653800px;}
.y8c{bottom:378.452400px;}
.y5b{bottom:381.108900px;}
.yec{bottom:387.142800px;}
.ybf{bottom:389.165550px;}
.ya5{bottom:389.248050px;}
.y8b{bottom:397.955400px;}
.y173{bottom:399.778800px;}
.y2f{bottom:400.485150px;}
.yeb{bottom:403.342800px;}
.y11c{bottom:407.657250px;}
.ybe{bottom:408.668550px;}
.ya4{bottom:408.751050px;}
.y147{bottom:410.412750px;}
.y8a{bottom:417.458400px;}
.y5a{bottom:417.623400px;}
.y172{bottom:418.528800px;}
.y2e{bottom:420.285150px;}
.y11b{bottom:427.160250px;}
.ybd{bottom:428.171550px;}
.ya3{bottom:428.254050px;}
.yea{bottom:430.180800px;}
.y171{bottom:437.278800px;}
.y2d{bottom:440.085150px;}
.ye9{bottom:446.380800px;}
.y11a{bottom:446.663250px;}
.y146{bottom:446.927250px;}
.ybc{bottom:447.674550px;}
.ya2{bottom:447.757050px;}
.y89{bottom:453.972900px;}
.y59{bottom:454.137900px;}
.y170{bottom:456.028800px;}
.y2c{bottom:459.885150px;}
.y119{bottom:466.166250px;}
.ya1{bottom:467.260050px;}
.ye8{bottom:473.218800px;}
.y58{bottom:473.640900px;}
.y2b{bottom:479.685150px;}
.y16f{bottom:481.153800px;}
.y145{bottom:483.441750px;}
.ybb{bottom:484.189050px;}
.y118{bottom:485.669250px;}
.ya0{bottom:486.763050px;}
.ye7{bottom:489.418800px;}
.y88{bottom:490.487400px;}
.y57{bottom:493.143900px;}
.y2a{bottom:499.485150px;}
.y16e{bottom:499.903800px;}
.y144{bottom:502.944750px;}
.yba{bottom:503.692050px;}
.y117{bottom:505.172250px;}
.y9f{bottom:506.266050px;}
.y87{bottom:509.990400px;}
.y56{bottom:512.646900px;}
.ye6{bottom:516.256800px;}
.y16d{bottom:518.653800px;}
.y29{bottom:519.285150px;}
.y143{bottom:522.447750px;}
.yb9{bottom:523.195050px;}
.y116{bottom:524.675250px;}
.y86{bottom:529.493400px;}
.y55{bottom:532.149900px;}
.ye5{bottom:532.456800px;}
.y28{bottom:539.085150px;}
.y142{bottom:541.950750px;}
.yb8{bottom:542.698050px;}
.y9e{bottom:542.780550px;}
.y16c{bottom:543.778800px;}
.y115{bottom:544.178250px;}
.y85{bottom:548.996400px;}
.y27{bottom:558.885150px;}
.ye4{bottom:559.294800px;}
.yb7{bottom:562.201050px;}
.y9d{bottom:562.283550px;}
.y16b{bottom:562.528800px;}
.y84{bottom:568.499400px;}
.y54{bottom:568.664400px;}
.ye3{bottom:575.494800px;}
.y141{bottom:578.465250px;}
.y26{bottom:578.685150px;}
.y114{bottom:580.692750px;}
.yb6{bottom:581.704050px;}
.y9c{bottom:581.786550px;}
.y16a{bottom:587.653800px;}
.y83{bottom:588.002400px;}
.y53{bottom:588.167400px;}
.y140{bottom:597.968250px;}
.y25{bottom:598.485150px;}
.y113{bottom:600.195750px;}
.y1a{bottom:601.155300px;}
.yb5{bottom:601.207050px;}
.y9b{bottom:601.289550px;}
.ye2{bottom:602.332800px;}
.y169{bottom:606.403800px;}
.y82{bottom:607.505400px;}
.y52{bottom:607.670400px;}
.y13f{bottom:617.471250px;}
.ye1{bottom:618.532800px;}
.y112{bottom:619.698750px;}
.yb4{bottom:620.710050px;}
.y9a{bottom:620.792550px;}
.y19{bottom:621.607800px;}
.y168{bottom:625.153800px;}
.y81{bottom:627.008400px;}
.y51{bottom:627.173400px;}
.y24{bottom:631.039650px;}
.y111{bottom:639.201750px;}
.yb3{bottom:640.213050px;}
.y99{bottom:640.295550px;}
.y18{bottom:642.060300px;}
.y167{bottom:643.903800px;}
.y80{bottom:646.511400px;}
.y50{bottom:646.676400px;}
.ye0{bottom:650.338800px;}
.y23{bottom:650.839650px;}
.y13e{bottom:653.985750px;}
.y110{bottom:658.704750px;}
.yb2{bottom:659.716050px;}
.y98{bottom:659.798550px;}
.y7f{bottom:666.014400px;}
.y4f{bottom:666.179400px;}
.ydf{bottom:666.538800px;}
.y166{bottom:669.028800px;}
.y22{bottom:670.639650px;}
.y10f{bottom:678.207750px;}
.y17{bottom:682.965300px;}
.y7e{bottom:685.517400px;}
.y4e{bottom:685.682400px;}
.y165{bottom:687.778800px;}
.y21{bottom:690.439650px;}
.y13d{bottom:690.500250px;}
.yde{bottom:693.376800px;}
.ycd{bottom:695.664600px;}
.y10e{bottom:697.710750px;}
.y16{bottom:703.417800px;}
.y7d{bottom:705.020400px;}
.y4d{bottom:705.185400px;}
.y164{bottom:706.528800px;}
.ydd{bottom:709.576800px;}
.y13c{bottom:710.003250px;}
.y10d{bottom:717.213750px;}
.y20{bottom:722.994150px;}
.y15{bottom:723.870300px;}
.y7c{bottom:724.523400px;}
.y4c{bottom:724.688400px;}
.ydc{bottom:725.776800px;}
.y13b{bottom:729.506250px;}
.y163{bottom:731.653800px;}
.y10c{bottom:736.716750px;}
.y1f{bottom:742.794150px;}
.y7b{bottom:744.026400px;}
.y4b{bottom:744.191400px;}
.y14{bottom:744.322800px;}
.y162{bottom:750.403800px;}
.ydb{bottom:752.614800px;}
.y10b{bottom:756.219750px;}
.y1e{bottom:762.594150px;}
.y7a{bottom:763.529400px;}
.y4a{bottom:763.694400px;}
.y13a{bottom:766.020750px;}
.yda{bottom:768.814800px;}
.y161{bottom:769.153800px;}
.y10a{bottom:775.722750px;}
.y79{bottom:783.032400px;}
.y13{bottom:785.227800px;}
.y139{bottom:785.523750px;}
.y160{bottom:787.903800px;}
.y109{bottom:795.225750px;}
.yd9{bottom:795.652800px;}
.y49{bottom:800.208900px;}
.y138{bottom:805.026750px;}
.y12{bottom:805.680300px;}
.yd8{bottom:811.852800px;}
.y15f{bottom:813.028800px;}
.y108{bottom:814.728750px;}
.y1d{bottom:817.972800px;}
.y78{bottom:819.546900px;}
.y48{bottom:819.711900px;}
.y137{bottom:824.529750px;}
.y15e{bottom:831.778800px;}
.y107{bottom:834.231750px;}
.y77{bottom:839.049900px;}
.y47{bottom:839.214900px;}
.yd7{bottom:843.658800px;}
.y136{bottom:844.032750px;}
.y11{bottom:846.585300px;}
.y15d{bottom:850.528800px;}
.y106{bottom:853.734750px;}
.y76{bottom:858.552900px;}
.y46{bottom:858.717900px;}
.yd6{bottom:859.858800px;}
.y10{bottom:862.785300px;}
.y105{bottom:873.237750px;}
.y15c{bottom:875.653800px;}
.yc{bottom:876.067650px;}
.y75{bottom:878.055900px;}
.y45{bottom:878.220900px;}
.yf{bottom:878.985300px;}
.y135{bottom:880.547250px;}
.yd5{bottom:886.696800px;}
.y104{bottom:892.740750px;}
.y15b{bottom:894.403800px;}
.ye{bottom:895.185300px;}
.y74{bottom:897.558900px;}
.y44{bottom:897.723900px;}
.yb{bottom:902.804100px;}
.yd4{bottom:902.896800px;}
.y103{bottom:912.243750px;}
.y15a{bottom:913.153800px;}
.yd{bottom:915.637800px;}
.y134{bottom:917.061750px;}
.y73{bottom:917.061900px;}
.yd3{bottom:929.734800px;}
.y102{bottom:931.746750px;}
.y43{bottom:934.238400px;}
.y133{bottom:936.564750px;}
.y72{bottom:936.564900px;}
.y159{bottom:938.278800px;}
.yd2{bottom:945.934800px;}
.y101{bottom:951.249750px;}
.y42{bottom:953.741400px;}
.y71{bottom:956.067900px;}
.y158{bottom:957.028800px;}
.y9{bottom:960.829800px;}
.y100{bottom:970.752750px;}
.y132{bottom:973.079250px;}
.y41{bottom:973.244400px;}
.y157{bottom:975.778800px;}
.ycf{bottom:976.997100px;}
.yff{bottom:990.255750px;}
.y131{bottom:992.582250px;}
.y70{bottom:992.582400px;}
.y40{bottom:992.747400px;}
.y8{bottom:993.229800px;}
.y156{bottom:1000.903800px;}
.yfe{bottom:1009.758750px;}
.y130{bottom:1012.085250px;}
.y3f{bottom:1012.250400px;}
.y155{bottom:1019.653800px;}
.y7{bottom:1025.629800px;}
.yd1{bottom:1027.218300px;}
.y6f{bottom:1029.096900px;}
.yfd{bottom:1029.261750px;}
.y12f{bottom:1031.588250px;}
.y3e{bottom:1031.753400px;}
.y154{bottom:1044.778800px;}
.y6e{bottom:1048.599900px;}
.yfc{bottom:1048.764750px;}
.y12e{bottom:1051.091250px;}
.y3d{bottom:1051.256400px;}
.y6{bottom:1053.546450px;}
.yd0{bottom:1054.325100px;}
.y185{bottom:1062.546900px;}
.y153{bottom:1063.528800px;}
.y6d{bottom:1068.102900px;}
.yfb{bottom:1068.267750px;}
.y5{bottom:1069.746450px;}
.y12d{bottom:1070.594250px;}
.y3c{bottom:1070.759400px;}
.y152{bottom:1082.278800px;}
.y184{bottom:1082.346900px;}
.y6c{bottom:1087.605900px;}
.yfa{bottom:1087.770750px;}
.y12c{bottom:1090.097250px;}
.y3b{bottom:1090.262400px;}
.y151{bottom:1101.028800px;}
.y183{bottom:1102.146900px;}
.y6b{bottom:1107.108900px;}
.yf9{bottom:1107.273750px;}
.y12b{bottom:1109.600250px;}
.y3a{bottom:1109.765400px;}
.y150{bottom:1119.778800px;}
.ya{bottom:1123.179750px;}
.y6a{bottom:1126.611900px;}
.yf8{bottom:1126.776750px;}
.y12a{bottom:1129.103250px;}
.y39{bottom:1129.268400px;}
.y14f{bottom:1138.528800px;}
.y69{bottom:1146.114900px;}
.yf7{bottom:1146.279750px;}
.y182{bottom:1148.158800px;}
.yce{bottom:1156.795200px;}
.y129{bottom:1165.617750px;}
.y68{bottom:1165.617900px;}
.yf6{bottom:1165.782750px;}
.y38{bottom:1165.782900px;}
.y181{bottom:1166.908800px;}
.y4{bottom:1172.255700px;}
.y2{bottom:1191.347400px;}
.y37{bottom:1197.407400px;}
.y1{bottom:1207.755900px;}
.h9{height:36.093750px;}
.h5{height:39.972656px;}
.hb{height:40.394531px;}
.ha{height:40.605469px;}
.h3{height:44.414062px;}
.hc{height:44.507812px;}
.h14{height:44.882812px;}
.h4{height:47.277398px;}
.h11{height:49.371094px;}
.h13{height:49.453125px;}
.hf{height:49.628906px;}
.h7{height:51.257812px;}
.h8{height:51.445312px;}
.h10{height:53.296875px;}
.he{height:54.398438px;}
.h12{height:59.343750px;}
.hd{height:72.023438px;}
.h6{height:79.945312px;}
.h2{height:90.234375px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:6.084750px;}
.xb{left:15.561750px;}
.xc{left:24.458250px;}
.xd{left:26.550750px;}
.x6{left:36.652200px;}
.xf{left:52.943250px;}
.xa{left:57.182250px;}
.x5{left:63.044700px;}
.x16{left:64.523550px;}
.x11{left:66.591750px;}
.x14{left:72.283350px;}
.x17{left:83.123550px;}
.xe{left:88.637250px;}
.x2b{left:90.779550px;}
.x18{left:118.223550px;}
.x26{left:143.210700px;}
.x19{left:153.323550px;}
.x2{left:208.546950px;}
.x7{left:211.181100px;}
.x9{left:212.774700px;}
.x27{left:226.829700px;}
.x13{left:232.786800px;}
.x1a{left:236.942550px;}
.x12{left:242.046600px;}
.x1b{left:279.697050px;}
.x4{left:308.436300px;}
.x1c{left:322.451550px;}
.x1d{left:372.631050px;}
.x1{left:408.040350px;}
.x1e{left:415.453050px;}
.x25{left:455.573700px;}
.x15{left:461.556600px;}
.x1f{left:465.700050px;}
.x20{left:481.900050px;}
.x2c{left:488.339550px;}
.x21{left:498.100050px;}
.x28{left:551.437200px;}
.x22{left:561.550050px;}
.x29{left:654.185700px;}
.x8{left:659.865300px;}
.x23{left:664.298550px;}
.x2a{left:689.285700px;}
.x24{left:699.398550px;}
.x3{left:791.578500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.528000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:100.080000pt;}
.ls1{letter-spacing:105.696000pt;}
.ls2{letter-spacing:107.712000pt;}
.ls5{letter-spacing:133.152000pt;}
.ls3{letter-spacing:159.312000pt;}
.ws5{word-spacing:-16.192000pt;}
.ws0{word-spacing:-13.248000pt;}
.ws10{word-spacing:-13.152000pt;}
.ws21{word-spacing:-10.608000pt;}
.ws29{word-spacing:-0.640000pt;}
.wsb{word-spacing:-0.586667pt;}
.ws1{word-spacing:0.000000pt;}
.ws26{word-spacing:4.106667pt;}
.ws25{word-spacing:4.165333pt;}
.ws4{word-spacing:5.616000pt;}
.ws7{word-spacing:6.570667pt;}
.ws8{word-spacing:7.157333pt;}
.ws6{word-spacing:9.621333pt;}
.wse{word-spacing:9.797333pt;}
.ws23{word-spacing:10.325333pt;}
.ws28{word-spacing:12.640000pt;}
.ws9{word-spacing:14.725333pt;}
.wsc{word-spacing:15.605333pt;}
.ws3{word-spacing:18.480000pt;}
.ws2{word-spacing:18.656000pt;}
.wsa{word-spacing:21.354667pt;}
.wsd{word-spacing:23.525333pt;}
.ws24{word-spacing:23.642667pt;}
.ws22{word-spacing:33.146667pt;}
.ws15{word-spacing:52.512000pt;}
.ws13{word-spacing:53.280000pt;}
.ws1e{word-spacing:53.520000pt;}
.ws1b{word-spacing:54.048000pt;}
.ws19{word-spacing:54.288000pt;}
.ws27{word-spacing:57.493333pt;}
.ws1c{word-spacing:69.840000pt;}
.ws11{word-spacing:78.768000pt;}
.ws16{word-spacing:79.008000pt;}
.ws1f{word-spacing:81.456000pt;}
.ws18{word-spacing:86.928000pt;}
.ws1d{word-spacing:94.560000pt;}
.ws17{word-spacing:99.600000pt;}
.ws14{word-spacing:116.016000pt;}
.ws12{word-spacing:116.784000pt;}
.wsf{word-spacing:119.760000pt;}
.ws20{word-spacing:120.000000pt;}
.ws1a{word-spacing:121.632000pt;}
._17{margin-left:-8.817600pt;}
._7{margin-left:-7.694400pt;}
._4{margin-left:-5.968000pt;}
._8{margin-left:-4.728000pt;}
._0{margin-left:-3.098667pt;}
._9{margin-left:-2.074133pt;}
._6{margin-left:-1.088000pt;}
._1{width:1.410881pt;}
._d{width:2.814933pt;}
._a{width:3.840000pt;}
._e{width:4.795733pt;}
._10{width:5.970133pt;}
._16{width:6.895467pt;}
._b{width:7.822933pt;}
._c{width:9.457067pt;}
._14{width:10.653867pt;}
._1a{width:11.745067pt;}
._15{width:12.672000pt;}
._11{width:13.974400pt;}
._1b{width:14.983467pt;}
._20{width:17.218667pt;}
._f{width:18.133867pt;}
._18{width:19.629867pt;}
._1d{width:20.885333pt;}
._5{width:21.845333pt;}
._19{width:23.439467pt;}
._26{width:25.361600pt;}
._22{width:26.875200pt;}
._23{width:27.864000pt;}
._21{width:29.365333pt;}
._43{width:30.453867pt;}
._24{width:32.063467pt;}
._25{width:33.244267pt;}
._42{width:36.160000pt;}
._1f{width:43.935467pt;}
._13{width:45.842667pt;}
._12{width:46.848000pt;}
._41{width:56.185067pt;}
._1e{width:58.520000pt;}
._27{width:64.925119pt;}
._32{width:67.200000pt;}
._30{width:68.112000pt;}
._3d{width:69.264000pt;}
._1c{width:71.271252pt;}
._37{width:74.064000pt;}
._3c{width:75.504000pt;}
._3e{width:76.512000pt;}
._34{width:77.616000pt;}
._40{width:78.566400pt;}
._31{width:81.456000pt;}
._29{width:82.992000pt;}
._3b{width:90.624000pt;}
._2f{width:92.688000pt;}
._2d{width:94.368000pt;}
._2c{width:100.080000pt;}
._38{width:102.768000pt;}
._35{width:105.216000pt;}
._28{width:107.712000pt;}
._3f{width:134.256000pt;}
._33{width:135.168000pt;}
._2{width:136.095860pt;}
._3a{width:138.096000pt;}
._39{width:145.200000pt;}
._2a{width:159.312000pt;}
._36{width:162.192000pt;}
._3{width:163.102957pt;}
._2b{width:166.976140pt;}
._2e{width:168.288000pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:55.886933pt;}
.fs8{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.fs0{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:50.556267pt;}
.y1b{bottom:64.956267pt;}
.y3{bottom:72.686667pt;}
.ycc{bottom:105.566000pt;}
.yb1{bottom:107.723600pt;}
.y180{bottom:116.025600pt;}
.ycb{bottom:122.902000pt;}
.y128{bottom:124.087333pt;}
.yb0{bottom:125.059600pt;}
.y97{bottom:130.584800pt;}
.y67{bottom:130.731467pt;}
.y17f{bottom:132.692267pt;}
.yca{bottom:140.238000pt;}
.y127{bottom:141.423333pt;}
.yaf{bottom:142.395600pt;}
.y96{bottom:147.920800pt;}
.y66{bottom:148.067467pt;}
.y17e{bottom:149.358933pt;}
.y14e{bottom:152.731333pt;}
.yc9{bottom:157.574000pt;}
.y126{bottom:158.759333pt;}
.yf5{bottom:163.007867pt;}
.y95{bottom:165.256800pt;}
.y65{bottom:165.403467pt;}
.y17d{bottom:166.025600pt;}
.y14d{bottom:170.067333pt;}
.yae{bottom:174.852933pt;}
.yc8{bottom:174.910000pt;}
.y125{bottom:176.095333pt;}
.y94{bottom:182.592800pt;}
.y64{bottom:182.739467pt;}
.y17c{bottom:188.358933pt;}
.yf4{bottom:191.102933pt;}
.yad{bottom:192.188933pt;}
.yc7{bottom:192.246000pt;}
.y124{bottom:193.431333pt;}
.y36{bottom:196.076267pt;}
.y63{bottom:200.075467pt;}
.y14c{bottom:202.524667pt;}
.y17b{bottom:205.025600pt;}
.yf3{bottom:205.502933pt;}
.yac{bottom:209.524933pt;}
.yc6{bottom:209.582000pt;}
.y35{bottom:210.476267pt;}
.y123{bottom:210.767333pt;}
.y93{bottom:215.050133pt;}
.y62{bottom:217.411467pt;}
.yab{bottom:226.860933pt;}
.yc5{bottom:226.918000pt;}
.y17a{bottom:227.358933pt;}
.y122{bottom:228.103333pt;}
.yf2{bottom:229.358933pt;}
.y92{bottom:232.386133pt;}
.y61{bottom:234.747467pt;}
.y14b{bottom:234.982000pt;}
.yf1{bottom:243.758933pt;}
.y179{bottom:244.025600pt;}
.y34{bottom:245.312133pt;}
.y121{bottom:245.439333pt;}
.y91{bottom:249.722133pt;}
.y60{bottom:252.083467pt;}
.yc4{bottom:259.244933pt;}
.yaa{bottom:259.318267pt;}
.y120{bottom:262.775333pt;}
.y33{bottom:262.912133pt;}
.y178{bottom:266.358933pt;}
.y90{bottom:267.058133pt;}
.y14a{bottom:267.439333pt;}
.yf0{bottom:267.614933pt;}
.y5f{bottom:269.419467pt;}
.yc3{bottom:276.580933pt;}
.ya9{bottom:276.654267pt;}
.y11f{bottom:280.111333pt;}
.yef{bottom:282.014933pt;}
.y177{bottom:283.025600pt;}
.y8f{bottom:284.394133pt;}
.y5e{bottom:286.755467pt;}
.y32{bottom:291.849467pt;}
.yc2{bottom:293.916933pt;}
.ya8{bottom:293.990267pt;}
.y11e{bottom:297.447333pt;}
.y176{bottom:299.692267pt;}
.y149{bottom:299.896667pt;}
.y8e{bottom:301.730133pt;}
.y5d{bottom:304.091467pt;}
.yee{bottom:305.870933pt;}
.y31{bottom:309.449467pt;}
.yc1{bottom:311.252933pt;}
.ya7{bottom:311.326267pt;}
.y175{bottom:316.358933pt;}
.y8d{bottom:319.066133pt;}
.yed{bottom:320.270933pt;}
.y5c{bottom:321.427467pt;}
.y30{bottom:327.049467pt;}
.yc0{bottom:328.588933pt;}
.ya6{bottom:328.662267pt;}
.y11d{bottom:329.904667pt;}
.y148{bottom:332.354000pt;}
.y174{bottom:333.025600pt;}
.y8c{bottom:336.402133pt;}
.y5b{bottom:338.763467pt;}
.yec{bottom:344.126933pt;}
.ybf{bottom:345.924933pt;}
.ya5{bottom:345.998267pt;}
.y8b{bottom:353.738133pt;}
.y173{bottom:355.358933pt;}
.y2f{bottom:355.986800pt;}
.yeb{bottom:358.526933pt;}
.y11c{bottom:362.362000pt;}
.ybe{bottom:363.260933pt;}
.ya4{bottom:363.334267pt;}
.y147{bottom:364.811333pt;}
.y8a{bottom:371.074133pt;}
.y5a{bottom:371.220800pt;}
.y172{bottom:372.025600pt;}
.y2e{bottom:373.586800pt;}
.y11b{bottom:379.698000pt;}
.ybd{bottom:380.596933pt;}
.ya3{bottom:380.670267pt;}
.yea{bottom:382.382933pt;}
.y171{bottom:388.692267pt;}
.y2d{bottom:391.186800pt;}
.ye9{bottom:396.782933pt;}
.y11a{bottom:397.034000pt;}
.y146{bottom:397.268667pt;}
.ybc{bottom:397.932933pt;}
.ya2{bottom:398.006267pt;}
.y89{bottom:403.531467pt;}
.y59{bottom:403.678133pt;}
.y170{bottom:405.358933pt;}
.y2c{bottom:408.786800pt;}
.y119{bottom:414.370000pt;}
.ya1{bottom:415.342267pt;}
.ye8{bottom:420.638933pt;}
.y58{bottom:421.014133pt;}
.y2b{bottom:426.386800pt;}
.y16f{bottom:427.692267pt;}
.y145{bottom:429.726000pt;}
.ybb{bottom:430.390267pt;}
.y118{bottom:431.706000pt;}
.ya0{bottom:432.678267pt;}
.ye7{bottom:435.038933pt;}
.y88{bottom:435.988800pt;}
.y57{bottom:438.350133pt;}
.y2a{bottom:443.986800pt;}
.y16e{bottom:444.358933pt;}
.y144{bottom:447.062000pt;}
.yba{bottom:447.726267pt;}
.y117{bottom:449.042000pt;}
.y9f{bottom:450.014267pt;}
.y87{bottom:453.324800pt;}
.y56{bottom:455.686133pt;}
.ye6{bottom:458.894933pt;}
.y16d{bottom:461.025600pt;}
.y29{bottom:461.586800pt;}
.y143{bottom:464.398000pt;}
.yb9{bottom:465.062267pt;}
.y116{bottom:466.378000pt;}
.y86{bottom:470.660800pt;}
.y55{bottom:473.022133pt;}
.ye5{bottom:473.294933pt;}
.y28{bottom:479.186800pt;}
.y142{bottom:481.734000pt;}
.yb8{bottom:482.398267pt;}
.y9e{bottom:482.471600pt;}
.y16c{bottom:483.358933pt;}
.y115{bottom:483.714000pt;}
.y85{bottom:487.996800pt;}
.y27{bottom:496.786800pt;}
.ye4{bottom:497.150933pt;}
.yb7{bottom:499.734267pt;}
.y9d{bottom:499.807600pt;}
.y16b{bottom:500.025600pt;}
.y84{bottom:505.332800pt;}
.y54{bottom:505.479467pt;}
.ye3{bottom:511.550933pt;}
.y141{bottom:514.191333pt;}
.y26{bottom:514.386800pt;}
.y114{bottom:516.171333pt;}
.yb6{bottom:517.070267pt;}
.y9c{bottom:517.143600pt;}
.y16a{bottom:522.358933pt;}
.y83{bottom:522.668800pt;}
.y53{bottom:522.815467pt;}
.y140{bottom:531.527333pt;}
.y25{bottom:531.986800pt;}
.y113{bottom:533.507333pt;}
.y1a{bottom:534.360267pt;}
.yb5{bottom:534.406267pt;}
.y9b{bottom:534.479600pt;}
.ye2{bottom:535.406933pt;}
.y169{bottom:539.025600pt;}
.y82{bottom:540.004800pt;}
.y52{bottom:540.151467pt;}
.y13f{bottom:548.863333pt;}
.ye1{bottom:549.806933pt;}
.y112{bottom:550.843333pt;}
.yb4{bottom:551.742267pt;}
.y9a{bottom:551.815600pt;}
.y19{bottom:552.540267pt;}
.y168{bottom:555.692267pt;}
.y81{bottom:557.340800pt;}
.y51{bottom:557.487467pt;}
.y24{bottom:560.924133pt;}
.y111{bottom:568.179333pt;}
.yb3{bottom:569.078267pt;}
.y99{bottom:569.151600pt;}
.y18{bottom:570.720267pt;}
.y167{bottom:572.358933pt;}
.y80{bottom:574.676800pt;}
.y50{bottom:574.823467pt;}
.ye0{bottom:578.078933pt;}
.y23{bottom:578.524133pt;}
.y13e{bottom:581.320667pt;}
.y110{bottom:585.515333pt;}
.yb2{bottom:586.414267pt;}
.y98{bottom:586.487600pt;}
.y7f{bottom:592.012800pt;}
.y4f{bottom:592.159467pt;}
.ydf{bottom:592.478933pt;}
.y166{bottom:594.692267pt;}
.y22{bottom:596.124133pt;}
.y10f{bottom:602.851333pt;}
.y17{bottom:607.080267pt;}
.y7e{bottom:609.348800pt;}
.y4e{bottom:609.495467pt;}
.y165{bottom:611.358933pt;}
.y21{bottom:613.724133pt;}
.y13d{bottom:613.778000pt;}
.yde{bottom:616.334933pt;}
.ycd{bottom:618.368533pt;}
.y10e{bottom:620.187333pt;}
.y16{bottom:625.260267pt;}
.y7d{bottom:626.684800pt;}
.y4d{bottom:626.831467pt;}
.y164{bottom:628.025600pt;}
.ydd{bottom:630.734933pt;}
.y13c{bottom:631.114000pt;}
.y10d{bottom:637.523333pt;}
.y20{bottom:642.661467pt;}
.y15{bottom:643.440267pt;}
.y7c{bottom:644.020800pt;}
.y4c{bottom:644.167467pt;}
.ydc{bottom:645.134933pt;}
.y13b{bottom:648.450000pt;}
.y163{bottom:650.358933pt;}
.y10c{bottom:654.859333pt;}
.y1f{bottom:660.261467pt;}
.y7b{bottom:661.356800pt;}
.y4b{bottom:661.503467pt;}
.y14{bottom:661.620267pt;}
.y162{bottom:667.025600pt;}
.ydb{bottom:668.990933pt;}
.y10b{bottom:672.195333pt;}
.y1e{bottom:677.861467pt;}
.y7a{bottom:678.692800pt;}
.y4a{bottom:678.839467pt;}
.y13a{bottom:680.907333pt;}
.yda{bottom:683.390933pt;}
.y161{bottom:683.692267pt;}
.y10a{bottom:689.531333pt;}
.y79{bottom:696.028800pt;}
.y13{bottom:697.980267pt;}
.y139{bottom:698.243333pt;}
.y160{bottom:700.358933pt;}
.y109{bottom:706.867333pt;}
.yd9{bottom:707.246933pt;}
.y49{bottom:711.296800pt;}
.y138{bottom:715.579333pt;}
.y12{bottom:716.160267pt;}
.yd8{bottom:721.646933pt;}
.y15f{bottom:722.692267pt;}
.y108{bottom:724.203333pt;}
.y1d{bottom:727.086933pt;}
.y78{bottom:728.486133pt;}
.y48{bottom:728.632800pt;}
.y137{bottom:732.915333pt;}
.y15e{bottom:739.358933pt;}
.y107{bottom:741.539333pt;}
.y77{bottom:745.822133pt;}
.y47{bottom:745.968800pt;}
.yd7{bottom:749.918933pt;}
.y136{bottom:750.251333pt;}
.y11{bottom:752.520267pt;}
.y15d{bottom:756.025600pt;}
.y106{bottom:758.875333pt;}
.y76{bottom:763.158133pt;}
.y46{bottom:763.304800pt;}
.yd6{bottom:764.318933pt;}
.y10{bottom:766.920267pt;}
.y105{bottom:776.211333pt;}
.y15c{bottom:778.358933pt;}
.yc{bottom:778.726800pt;}
.y75{bottom:780.494133pt;}
.y45{bottom:780.640800pt;}
.yf{bottom:781.320267pt;}
.y135{bottom:782.708667pt;}
.yd5{bottom:788.174933pt;}
.y104{bottom:793.547333pt;}
.y15b{bottom:795.025600pt;}
.ye{bottom:795.720267pt;}
.y74{bottom:797.830133pt;}
.y44{bottom:797.976800pt;}
.yb{bottom:802.492533pt;}
.yd4{bottom:802.574933pt;}
.y103{bottom:810.883333pt;}
.y15a{bottom:811.692267pt;}
.yd{bottom:813.900267pt;}
.y134{bottom:815.166000pt;}
.y73{bottom:815.166133pt;}
.yd3{bottom:826.430933pt;}
.y102{bottom:828.219333pt;}
.y43{bottom:830.434133pt;}
.y133{bottom:832.502000pt;}
.y72{bottom:832.502133pt;}
.y159{bottom:834.025600pt;}
.yd2{bottom:840.830933pt;}
.y101{bottom:845.555333pt;}
.y42{bottom:847.770133pt;}
.y71{bottom:849.838133pt;}
.y158{bottom:850.692267pt;}
.y9{bottom:854.070933pt;}
.y100{bottom:862.891333pt;}
.y132{bottom:864.959333pt;}
.y41{bottom:865.106133pt;}
.y157{bottom:867.358933pt;}
.ycf{bottom:868.441867pt;}
.yff{bottom:880.227333pt;}
.y131{bottom:882.295333pt;}
.y70{bottom:882.295467pt;}
.y40{bottom:882.442133pt;}
.y8{bottom:882.870933pt;}
.y156{bottom:889.692267pt;}
.yfe{bottom:897.563333pt;}
.y130{bottom:899.631333pt;}
.y3f{bottom:899.778133pt;}
.y155{bottom:906.358933pt;}
.y7{bottom:911.670933pt;}
.yd1{bottom:913.082933pt;}
.y6f{bottom:914.752800pt;}
.yfd{bottom:914.899333pt;}
.y12f{bottom:916.967333pt;}
.y3e{bottom:917.114133pt;}
.y154{bottom:928.692267pt;}
.y6e{bottom:932.088800pt;}
.yfc{bottom:932.235333pt;}
.y12e{bottom:934.303333pt;}
.y3d{bottom:934.450133pt;}
.y6{bottom:936.485733pt;}
.yd0{bottom:937.177867pt;}
.y185{bottom:944.486133pt;}
.y153{bottom:945.358933pt;}
.y6d{bottom:949.424800pt;}
.yfb{bottom:949.571333pt;}
.y5{bottom:950.885733pt;}
.y12d{bottom:951.639333pt;}
.y3c{bottom:951.786133pt;}
.y152{bottom:962.025600pt;}
.y184{bottom:962.086133pt;}
.y6c{bottom:966.760800pt;}
.yfa{bottom:966.907333pt;}
.y12c{bottom:968.975333pt;}
.y3b{bottom:969.122133pt;}
.y151{bottom:978.692267pt;}
.y183{bottom:979.686133pt;}
.y6b{bottom:984.096800pt;}
.yf9{bottom:984.243333pt;}
.y12b{bottom:986.311333pt;}
.y3a{bottom:986.458133pt;}
.y150{bottom:995.358933pt;}
.ya{bottom:998.382000pt;}
.y6a{bottom:1001.432800pt;}
.yf8{bottom:1001.579333pt;}
.y12a{bottom:1003.647333pt;}
.y39{bottom:1003.794133pt;}
.y14f{bottom:1012.025600pt;}
.y69{bottom:1018.768800pt;}
.yf7{bottom:1018.915333pt;}
.y182{bottom:1020.585600pt;}
.yce{bottom:1028.262400pt;}
.y129{bottom:1036.104667pt;}
.y68{bottom:1036.104800pt;}
.yf6{bottom:1036.251333pt;}
.y38{bottom:1036.251467pt;}
.y181{bottom:1037.252267pt;}
.y4{bottom:1042.005067pt;}
.y2{bottom:1058.975467pt;}
.y37{bottom:1064.362133pt;}
.y1{bottom:1073.560800pt;}
.h9{height:32.083333pt;}
.h5{height:35.531250pt;}
.hb{height:35.906250pt;}
.ha{height:36.093750pt;}
.h3{height:39.479167pt;}
.hc{height:39.562500pt;}
.h14{height:39.895833pt;}
.h4{height:42.024354pt;}
.h11{height:43.885417pt;}
.h13{height:43.958333pt;}
.hf{height:44.114583pt;}
.h7{height:45.562500pt;}
.h8{height:45.729167pt;}
.h10{height:47.375000pt;}
.he{height:48.354167pt;}
.h12{height:52.750000pt;}
.hd{height:64.020833pt;}
.h6{height:71.062500pt;}
.h2{height:80.208333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:5.408667pt;}
.xb{left:13.832667pt;}
.xc{left:21.740667pt;}
.xd{left:23.600667pt;}
.x6{left:32.579733pt;}
.xf{left:47.060667pt;}
.xa{left:50.828667pt;}
.x5{left:56.039733pt;}
.x16{left:57.354267pt;}
.x11{left:59.192667pt;}
.x14{left:64.251867pt;}
.x17{left:73.887600pt;}
.xe{left:78.788667pt;}
.x2b{left:80.692933pt;}
.x18{left:105.087600pt;}
.x26{left:127.298400pt;}
.x19{left:136.287600pt;}
.x2{left:185.375067pt;}
.x7{left:187.716533pt;}
.x9{left:189.133067pt;}
.x27{left:201.626400pt;}
.x13{left:206.921600pt;}
.x1a{left:210.615600pt;}
.x12{left:215.152533pt;}
.x1b{left:248.619600pt;}
.x4{left:274.165600pt;}
.x1c{left:286.623600pt;}
.x1d{left:331.227600pt;}
.x1{left:362.702533pt;}
.x1e{left:369.291600pt;}
.x25{left:404.954400pt;}
.x15{left:410.272533pt;}
.x1f{left:413.955600pt;}
.x20{left:428.355600pt;}
.x2c{left:434.079600pt;}
.x21{left:442.755600pt;}
.x28{left:490.166400pt;}
.x22{left:499.155600pt;}
.x29{left:581.498400pt;}
.x8{left:586.546933pt;}
.x23{left:590.487600pt;}
.x2a{left:612.698400pt;}
.x24{left:621.687600pt;}
.x3{left:703.625333pt;}
}




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