
    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_dbfc75033c1945ce9d3226f1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.731445;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_895cc56f2ba41604836d5ea9.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910156;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_4c2a6225818358ef18be8ecd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.097168;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_dd37ed25f3eb6f95890e5914.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080566;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_f2ab434d94d91b363f01f7f2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-28.977000px;}
.v5{vertical-align:-27.000000px;}
.v2{vertical-align:-22.977000px;}
.v6{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.050400px;}
.v7{vertical-align:39.600000px;}
.v3{vertical-align:41.250000px;}
.ls6{letter-spacing:-5.940000px;}
.ls9{letter-spacing:-2.970000px;}
.ls8{letter-spacing:-1.320000px;}
.ls7{letter-spacing:-1.056000px;}
.ls3{letter-spacing:-0.966000px;}
.lsc{letter-spacing:-0.897000px;}
.ls5{letter-spacing:-0.792000px;}
.ls4{letter-spacing:-0.528000px;}
.ls1{letter-spacing:-0.483000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000300px;}
.lsa{letter-spacing:235.467000px;}
.lsb{letter-spacing:237.276600px;}
.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;}
}
.ws1{word-spacing:-17.250000px;}
.ws4{word-spacing:-16.767000px;}
.ws3{word-spacing:-16.500000px;}
.ws28{word-spacing:-16.353000px;}
.ws6{word-spacing:-15.972000px;}
.ws17{word-spacing:-15.000000px;}
.wsa{word-spacing:-10.560000px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.483000px;}
.ws11{word-spacing:0.528000px;}
.ws12{word-spacing:0.792000px;}
.ws10{word-spacing:0.966000px;}
.ws13{word-spacing:1.056000px;}
.ws26{word-spacing:1.320000px;}
.ws27{word-spacing:73.953000px;}
.ws1e{word-spacing:147.596400px;}
.ws1d{word-spacing:148.820400px;}
.ws7{word-spacing:151.048200px;}
.wsb{word-spacing:151.605000px;}
.wsd{word-spacing:152.829000px;}
.ws24{word-spacing:163.568400px;}
.ws1f{word-spacing:164.096400px;}
.ws1b{word-spacing:164.360400px;}
.ws21{word-spacing:180.068400px;}
.wse{word-spacing:195.395400px;}
.ws14{word-spacing:195.396000px;}
.ws16{word-spacing:196.620600px;}
.ws9{word-spacing:213.118200px;}
.ws1a{word-spacing:229.716000px;}
.ws19{word-spacing:234.418200px;}
.ws18{word-spacing:249.983400px;}
.ws15{word-spacing:257.465400px;}
.wsf{word-spacing:257.466000px;}
.ws8{word-spacing:271.283400px;}
.wsc{word-spacing:275.550000px;}
.ws20{word-spacing:278.765400px;}
.ws23{word-spacing:279.989400px;}
.ws25{word-spacing:286.084200px;}
.ws22{word-spacing:295.001400px;}
.ws1c{word-spacing:296.849400px;}
.ws0{word-spacing:1508.274600px;}
._21{margin-left:-17.935500px;}
._20{margin-left:-16.362000px;}
._3{margin-left:-10.785600px;}
._26{margin-left:-8.523900px;}
._4{margin-left:-7.375200px;}
._6{margin-left:-6.014400px;}
._2{margin-left:-4.243800px;}
._0{margin-left:-2.501400px;}
._5{margin-left:-1.092000px;}
._1{width:1.663200px;}
._a{width:3.355800px;}
._8{width:4.389000px;}
._7{width:5.394000px;}
._1a{width:6.421200px;}
._9{width:7.450800px;}
._10{width:8.674500px;}
._17{width:9.923700px;}
._18{width:10.924800px;}
._22{width:11.979600px;}
._13{width:13.068600px;}
._12{width:14.766000px;}
._19{width:16.070100px;}
._15{width:19.036800px;}
._b{width:20.532000px;}
._c{width:21.784800px;}
._16{width:23.063400px;}
._24{width:24.619200px;}
._14{width:25.764600px;}
._1b{width:27.553500px;}
._d{width:29.499600px;}
._25{width:30.532500px;}
._39{width:31.677000px;}
._1c{width:32.751000px;}
._e{width:33.948000px;}
._4a{width:35.130000px;}
._1f{width:36.942000px;}
._23{width:38.843700px;}
._f{width:40.310100px;}
._1e{width:42.200400px;}
._1d{width:44.039400px;}
._49{width:45.174300px;}
._11{width:55.524000px;}
._4b{width:59.443500px;}
._48{width:65.776500px;}
._34{width:191.097600px;}
._37{width:192.559200px;}
._32{width:208.125600px;}
._36{width:209.306400px;}
._3e{width:217.622400px;}
._2c{width:221.894400px;}
._43{width:224.757600px;}
._42{width:225.901800px;}
._33{width:228.923400px;}
._41{width:231.434400px;}
._31{width:235.442400px;}
._30{width:238.394400px;}
._47{width:239.882400px;}
._44{width:241.389600px;}
._46{width:245.901000px;}
._3c{width:247.406400px;}
._29{width:251.678400px;}
._35{width:252.735000px;}
._38{width:255.573000px;}
._45{width:257.325600px;}
._2a{width:264.555600px;}
._2e{width:271.808400px;}
._3f{width:279.548400px;}
._2f{width:281.055600px;}
._3d{width:301.827600px;}
._28{width:305.407800px;}
._2b{width:307.200000px;}
._3b{width:326.707800px;}
._2d{width:369.269400px;}
._40{width:390.569400px;}
._27{width:670.321200px;}
._3a{width:691.621200px;}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:38.478000px;}
.fs5{font-size:40.227000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:110.975700px;}
.y42{bottom:111.082050px;}
.y7b{bottom:111.850650px;}
.yf9{bottom:113.232450px;}
.y44{bottom:113.338800px;}
.y40{bottom:140.827950px;}
.y2b{bottom:141.001650px;}
.y79{bottom:150.427050px;}
.yd6{bottom:155.334300px;}
.y129{bottom:156.559200px;}
.y178{bottom:158.317950px;}
.y157{bottom:158.595900px;}
.y3f{bottom:161.527950px;}
.y2a{bottom:161.701650px;}
.yaa{bottom:162.232500px;}
.y78{bottom:168.502050px;}
.yf7{bottom:172.632750px;}
.yd5{bottom:176.034300px;}
.y128{bottom:177.259200px;}
.y177{bottom:179.017950px;}
.y156{bottom:179.295900px;}
.y3e{bottom:182.227950px;}
.y29{bottom:182.401650px;}
.ya9{bottom:183.492450px;}
.yf6{bottom:193.332750px;}
.yd4{bottom:196.734300px;}
.y127{bottom:197.959200px;}
.y176{bottom:199.717950px;}
.y155{bottom:199.995900px;}
.y3d{bottom:202.927950px;}
.y28{bottom:203.101650px;}
.ya8{bottom:204.752250px;}
.yf5{bottom:214.032750px;}
.yd3{bottom:217.434300px;}
.y126{bottom:218.659200px;}
.y175{bottom:220.417950px;}
.y154{bottom:220.695900px;}
.y3c{bottom:223.627950px;}
.y27{bottom:223.801650px;}
.ya7{bottom:226.012050px;}
.yf4{bottom:234.732750px;}
.yd2{bottom:238.134300px;}
.y125{bottom:239.359200px;}
.y174{bottom:241.117950px;}
.y153{bottom:241.395900px;}
.y3b{bottom:244.327950px;}
.y26{bottom:244.501650px;}
.ya6{bottom:247.271850px;}
.yf3{bottom:255.432750px;}
.yd1{bottom:258.834300px;}
.y124{bottom:260.059200px;}
.y173{bottom:261.817950px;}
.y152{bottom:262.095900px;}
.y3a{bottom:265.027950px;}
.y25{bottom:265.201650px;}
.ya5{bottom:268.531800px;}
.yf2{bottom:276.132750px;}
.yd0{bottom:279.534300px;}
.y123{bottom:280.759200px;}
.y172{bottom:282.517950px;}
.y151{bottom:282.795900px;}
.y39{bottom:285.727950px;}
.y24{bottom:285.901650px;}
.ya4{bottom:289.791600px;}
.yf1{bottom:296.832750px;}
.ycf{bottom:300.234300px;}
.y122{bottom:301.459200px;}
.y171{bottom:303.217950px;}
.y150{bottom:303.495900px;}
.y38{bottom:306.427950px;}
.y23{bottom:306.601650px;}
.ya3{bottom:311.051400px;}
.yf0{bottom:317.532750px;}
.yce{bottom:320.934300px;}
.y121{bottom:322.159200px;}
.y170{bottom:323.917950px;}
.y14f{bottom:324.195900px;}
.y37{bottom:327.127950px;}
.y22{bottom:327.301650px;}
.ya2{bottom:332.311350px;}
.yef{bottom:338.232750px;}
.ycd{bottom:341.634300px;}
.y120{bottom:342.859200px;}
.y16f{bottom:344.617950px;}
.y14e{bottom:344.895900px;}
.y36{bottom:347.827950px;}
.y21{bottom:348.001650px;}
.ya1{bottom:353.571150px;}
.yee{bottom:358.932750px;}
.y1a4{bottom:361.303350px;}
.ycc{bottom:362.334300px;}
.y11f{bottom:363.559200px;}
.y16e{bottom:365.317950px;}
.y14d{bottom:365.595900px;}
.y35{bottom:368.527950px;}
.y20{bottom:368.701650px;}
.ya0{bottom:374.830950px;}
.yed{bottom:379.632750px;}
.ycb{bottom:383.034300px;}
.y11e{bottom:384.259200px;}
.y16d{bottom:386.017950px;}
.y14c{bottom:386.295900px;}
.y34{bottom:389.227950px;}
.y1f{bottom:389.401650px;}
.y9f{bottom:398.534700px;}
.yec{bottom:400.332750px;}
.yca{bottom:403.734300px;}
.y11d{bottom:404.959200px;}
.y16c{bottom:406.717950px;}
.y14b{bottom:406.995900px;}
.y9e{bottom:408.847200px;}
.y33{bottom:409.927950px;}
.y1e{bottom:410.101650px;}
.y19a{bottom:414.686550px;}
.y1a3{bottom:414.703350px;}
.yeb{bottom:421.032750px;}
.y9b{bottom:423.150900px;}
.yc9{bottom:424.434300px;}
.y11c{bottom:425.659200px;}
.y16b{bottom:427.417950px;}
.y14a{bottom:427.695900px;}
.y32{bottom:430.627950px;}
.y1d{bottom:430.801650px;}
.y199{bottom:435.386550px;}
.y1a2{bottom:435.403350px;}
.yea{bottom:441.732750px;}
.y9a{bottom:443.775900px;}
.yc8{bottom:445.134300px;}
.y11b{bottom:446.359200px;}
.y9d{bottom:446.537400px;}
.y16a{bottom:448.117950px;}
.y149{bottom:448.395900px;}
.y31{bottom:451.327950px;}
.y1c{bottom:451.501650px;}
.y198{bottom:456.086550px;}
.y1a1{bottom:456.103350px;}
.ye9{bottom:462.432750px;}
.yc7{bottom:465.834300px;}
.y11a{bottom:467.059200px;}
.y9c{bottom:467.162400px;}
.y169{bottom:468.817950px;}
.y148{bottom:469.095900px;}
.y30{bottom:472.027950px;}
.y1b{bottom:472.201650px;}
.y197{bottom:476.786550px;}
.y1a0{bottom:476.803350px;}
.ye8{bottom:483.132750px;}
.yc6{bottom:486.534300px;}
.y119{bottom:487.759200px;}
.y168{bottom:489.517950px;}
.y147{bottom:489.795900px;}
.y2f{bottom:492.728100px;}
.y1a{bottom:492.901650px;}
.y196{bottom:497.486550px;}
.y19f{bottom:497.503350px;}
.y99{bottom:503.088750px;}
.ye7{bottom:503.832750px;}
.yc5{bottom:507.234300px;}
.y118{bottom:508.459200px;}
.y167{bottom:510.217950px;}
.y146{bottom:510.495900px;}
.y2e{bottom:513.427950px;}
.y19{bottom:513.601650px;}
.y195{bottom:518.186550px;}
.y19e{bottom:518.203350px;}
.y97{bottom:523.788600px;}
.ye6{bottom:524.532750px;}
.yc4{bottom:527.934300px;}
.y117{bottom:529.159200px;}
.y98{bottom:529.532850px;}
.y166{bottom:530.917950px;}
.y145{bottom:531.195900px;}
.y2d{bottom:534.128100px;}
.y18{bottom:534.301650px;}
.y194{bottom:538.886550px;}
.y19d{bottom:538.903350px;}
.ye5{bottom:545.232750px;}
.yc3{bottom:548.634300px;}
.y116{bottom:549.859200px;}
.y165{bottom:551.617950px;}
.y144{bottom:551.895900px;}
.y2c{bottom:554.827950px;}
.y17{bottom:555.001650px;}
.y96{bottom:558.187050px;}
.y193{bottom:559.586550px;}
.y19c{bottom:559.603350px;}
.ye4{bottom:565.932750px;}
.yc2{bottom:569.334300px;}
.y115{bottom:570.559200px;}
.y164{bottom:572.317950px;}
.y143{bottom:572.595900px;}
.y16{bottom:575.701650px;}
.y95{bottom:578.887050px;}
.y192{bottom:580.286550px;}
.y5d{bottom:580.303350px;}
.y77{bottom:580.581300px;}
.ye3{bottom:586.632750px;}
.yc1{bottom:590.034300px;}
.y163{bottom:593.017950px;}
.y142{bottom:593.295900px;}
.y94{bottom:599.587050px;}
.y191{bottom:600.986550px;}
.y5c{bottom:601.003350px;}
.y76{bottom:601.281300px;}
.y114{bottom:605.501400px;}
.ye2{bottom:607.332750px;}
.yc0{bottom:610.734300px;}
.y162{bottom:613.717950px;}
.y141{bottom:613.995900px;}
.y93{bottom:620.287050px;}
.y190{bottom:621.686550px;}
.y5b{bottom:621.703350px;}
.y75{bottom:621.981300px;}
.y113{bottom:626.336100px;}
.ye1{bottom:628.032750px;}
.y15{bottom:629.332950px;}
.ybf{bottom:631.434300px;}
.y161{bottom:634.417950px;}
.y140{bottom:634.695900px;}
.y92{bottom:640.987050px;}
.y18f{bottom:642.386550px;}
.y5a{bottom:642.403350px;}
.y74{bottom:642.681300px;}
.y112{bottom:647.170650px;}
.y14{bottom:647.332950px;}
.ye0{bottom:648.732750px;}
.ybe{bottom:652.134300px;}
.y160{bottom:655.117950px;}
.y13f{bottom:655.395900px;}
.y91{bottom:661.687050px;}
.y18e{bottom:663.086550px;}
.y59{bottom:663.103350px;}
.y73{bottom:663.381300px;}
.y13{bottom:665.332950px;}
.y111{bottom:668.005350px;}
.ydf{bottom:669.432750px;}
.ybd{bottom:672.834300px;}
.y15f{bottom:675.817950px;}
.y13e{bottom:676.095900px;}
.y90{bottom:682.387050px;}
.y18d{bottom:683.786550px;}
.y58{bottom:683.803350px;}
.y72{bottom:684.081300px;}
.y110{bottom:688.840050px;}
.yde{bottom:690.132750px;}
.ybc{bottom:693.534300px;}
.y12{bottom:695.332950px;}
.y15e{bottom:696.517950px;}
.y13d{bottom:696.795900px;}
.y8f{bottom:703.087050px;}
.y18c{bottom:704.486550px;}
.y57{bottom:704.503350px;}
.y71{bottom:704.781300px;}
.y10f{bottom:709.674600px;}
.ydd{bottom:710.832750px;}
.y11{bottom:713.332950px;}
.ybb{bottom:714.234300px;}
.y15d{bottom:717.217950px;}
.y13c{bottom:717.495900px;}
.y8e{bottom:723.787050px;}
.y18b{bottom:725.186550px;}
.y56{bottom:725.203350px;}
.y70{bottom:725.481300px;}
.y10e{bottom:730.509300px;}
.ydc{bottom:731.532750px;}
.yba{bottom:734.934300px;}
.y15c{bottom:737.917950px;}
.y13b{bottom:738.195900px;}
.y10{bottom:743.332950px;}
.y8d{bottom:744.487050px;}
.y18a{bottom:745.886550px;}
.y55{bottom:745.903350px;}
.y6f{bottom:746.181300px;}
.y10d{bottom:751.343850px;}
.ydb{bottom:752.232750px;}
.yb9{bottom:755.634300px;}
.y15b{bottom:758.617950px;}
.y13a{bottom:758.895900px;}
.yf{bottom:761.332950px;}
.y8c{bottom:765.187050px;}
.y189{bottom:766.586550px;}
.y54{bottom:766.603350px;}
.y6e{bottom:766.881300px;}
.y10c{bottom:772.178550px;}
.yda{bottom:772.932750px;}
.yb8{bottom:776.334300px;}
.y15a{bottom:779.317950px;}
.ye{bottom:779.332950px;}
.y139{bottom:779.595900px;}
.y8b{bottom:785.887050px;}
.y188{bottom:787.286550px;}
.y53{bottom:787.303350px;}
.y6d{bottom:787.581300px;}
.y10b{bottom:793.013250px;}
.yd9{bottom:793.632900px;}
.yb7{bottom:797.034450px;}
.yd{bottom:797.332950px;}
.y159{bottom:800.017950px;}
.y138{bottom:800.295900px;}
.y8a{bottom:806.587050px;}
.y187{bottom:807.986550px;}
.y52{bottom:808.003350px;}
.y6c{bottom:808.281300px;}
.y10a{bottom:813.847800px;}
.yd8{bottom:814.332750px;}
.yc{bottom:815.332950px;}
.yb6{bottom:817.734300px;}
.y158{bottom:820.717950px;}
.y137{bottom:820.995900px;}
.y89{bottom:827.287050px;}
.y186{bottom:828.686400px;}
.y51{bottom:828.703350px;}
.y6b{bottom:828.981300px;}
.yb{bottom:833.332950px;}
.y109{bottom:834.682500px;}
.yd7{bottom:835.032750px;}
.yb5{bottom:838.434300px;}
.y88{bottom:847.987050px;}
.y185{bottom:849.386550px;}
.y19b{bottom:849.403350px;}
.y6a{bottom:849.681300px;}
.ya{bottom:851.332950px;}
.y108{bottom:855.517200px;}
.y12b{bottom:863.312550px;}
.y87{bottom:868.687200px;}
.y9{bottom:869.332950px;}
.y184{bottom:870.086550px;}
.y50{bottom:870.103350px;}
.y69{bottom:870.381300px;}
.y107{bottom:876.351900px;}
.yb4{bottom:880.528800px;}
.y86{bottom:889.387050px;}
.y183{bottom:890.786550px;}
.y4f{bottom:890.803350px;}
.y68{bottom:891.081300px;}
.y135{bottom:891.758700px;}
.y106{bottom:897.186450px;}
.yb3{bottom:898.528800px;}
.y134{bottom:901.658700px;}
.y85{bottom:910.087050px;}
.y182{bottom:911.486550px;}
.y4e{bottom:911.503350px;}
.y136{bottom:911.558550px;}
.y67{bottom:911.781300px;}
.y8{bottom:913.039050px;}
.yb2{bottom:916.528800px;}
.y105{bottom:918.021000px;}
.y84{bottom:930.787050px;}
.y181{bottom:932.186400px;}
.y4d{bottom:932.203350px;}
.y66{bottom:932.481300px;}
.y7{bottom:933.739050px;}
.y104{bottom:938.855700px;}
.yb1{bottom:941.386200px;}
.y132{bottom:942.782250px;}
.y83{bottom:951.487200px;}
.y131{bottom:952.682250px;}
.y180{bottom:952.886550px;}
.y4c{bottom:952.903350px;}
.y65{bottom:953.181300px;}
.y103{bottom:959.690400px;}
.y133{bottom:962.582250px;}
.yb0{bottom:962.646000px;}
.y6{bottom:966.439050px;}
.y82{bottom:972.187200px;}
.y17f{bottom:973.586550px;}
.y4b{bottom:973.603350px;}
.y64{bottom:973.881300px;}
.y102{bottom:981.905400px;}
.yaf{bottom:983.905950px;}
.y5{bottom:991.639050px;}
.y101{bottom:992.217900px;}
.y81{bottom:992.887050px;}
.y17e{bottom:994.286550px;}
.y4a{bottom:994.303350px;}
.y63{bottom:994.581300px;}
.y130{bottom:996.260400px;}
.yfe{bottom:1001.704800px;}
.yae{bottom:1005.165750px;}
.y80{bottom:1013.587050px;}
.y17d{bottom:1014.986550px;}
.y49{bottom:1015.003350px;}
.y62{bottom:1015.281300px;}
.y12c{bottom:1016.060550px;}
.y4{bottom:1016.839050px;}
.y12d{bottom:1021.555050px;}
.yfd{bottom:1022.329800px;}
.y100{bottom:1023.814950px;}
.yad{bottom:1026.425700px;}
.y7f{bottom:1034.287050px;}
.y17c{bottom:1035.686400px;}
.y48{bottom:1035.703350px;}
.y12e{bottom:1035.860550px;}
.y61{bottom:1035.981300px;}
.y12f{bottom:1041.355050px;}
.yff{bottom:1044.439950px;}
.yac{bottom:1047.685500px;}
.y3{bottom:1054.039050px;}
.y7e{bottom:1054.987200px;}
.y17b{bottom:1056.386550px;}
.y47{bottom:1056.403350px;}
.y60{bottom:1056.681300px;}
.yab{bottom:1068.945300px;}
.y7d{bottom:1075.687200px;}
.y17a{bottom:1077.086550px;}
.y46{bottom:1077.103350px;}
.y5f{bottom:1077.381300px;}
.yfc{bottom:1079.230350px;}
.y7c{bottom:1096.387050px;}
.y179{bottom:1097.786550px;}
.y45{bottom:1097.803350px;}
.y5e{bottom:1098.081300px;}
.y12a{bottom:1099.930350px;}
.yfa{bottom:1101.430350px;}
.y41{bottom:1106.290350px;}
.yfb{bottom:1108.180350px;}
.y7a{bottom:1134.242850px;}
.y1a5{bottom:1134.455400px;}
.yf8{bottom:1135.300650px;}
.y43{bottom:1135.730850px;}
.y2{bottom:1140.826950px;}
.h10{height:33.912495px;}
.hf{height:36.190945px;}
.hc{height:37.835988px;}
.h3{height:45.826172px;}
.hb{height:47.437500px;}
.h7{height:47.909180px;}
.h2{height:51.876572px;}
.h8{height:52.880859px;}
.h4{height:58.168945px;}
.h9{height:59.667480px;}
.ha{height:60.812988px;}
.h5{height:67.450195px;}
.h6{height:72.638672px;}
.h12{height:97.768345px;}
.h11{height:97.768945px;}
.hd{height:99.418945px;}
.he{height:140.668945px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:63.779550px;}
.x18{left:65.055150px;}
.x2a{left:69.885900px;}
.x10{left:72.803700px;}
.x24{left:75.179550px;}
.x13{left:89.291400px;}
.x3e{left:95.993550px;}
.x14{left:101.748750px;}
.x1{left:106.299150px;}
.x1b{left:108.000000px;}
.x2{left:111.188850px;}
.x1d{left:117.699150px;}
.xc{left:131.811000px;}
.xb{left:148.181100px;}
.x3f{left:156.138450px;}
.x48{left:166.219500px;}
.x4a{left:168.973800px;}
.x2b{left:185.269350px;}
.x7{left:197.450850px;}
.x6{left:222.203850px;}
.x26{left:229.658250px;}
.x1e{left:234.983250px;}
.x28{left:238.464150px;}
.x9{left:241.078800px;}
.x20{left:243.789150px;}
.x49{left:247.782150px;}
.x2f{left:250.318800px;}
.x2e{left:260.506500px;}
.x5{left:269.268900px;}
.x2c{left:271.840200px;}
.x27{left:276.164250px;}
.x1f{left:281.489250px;}
.x2d{left:300.481500px;}
.x19{left:305.987400px;}
.x25{left:307.688250px;}
.x8{left:321.789750px;}
.x21{left:344.004300px;}
.x32{left:351.315900px;}
.xa{left:366.158250px;}
.x33{left:367.425150px;}
.x41{left:377.701500px;}
.x46{left:381.463950px;}
.x40{left:385.588950px;}
.x30{left:388.946550px;}
.x31{left:417.587850px;}
.x16{left:435.826800px;}
.x15{left:461.338650px;}
.x17{left:473.998200px;}
.x3{left:477.113400px;}
.xe{left:478.346400px;}
.x34{left:481.939200px;}
.x42{left:483.834300px;}
.x4{left:485.033400px;}
.x1c{left:494.213400px;}
.x1a{left:501.732300px;}
.xd{left:503.858250px;}
.x35{left:510.580500px;}
.x39{left:560.409150px;}
.x38{left:570.596700px;}
.x47{left:573.584550px;}
.x43{left:578.572800px;}
.x36{left:581.930400px;}
.x37{left:610.571700px;}
.x29{left:636.109500px;}
.x22{left:641.679300px;}
.x23{left:655.822950px;}
.x3c{left:659.340750px;}
.x11{left:671.985300px;}
.x3d{left:675.450000px;}
.x45{left:685.726200px;}
.x44{left:693.613650px;}
.x3a{left:696.971400px;}
.x3b{left:725.612700px;}
.xf{left:766.985550px;}
@media print{
.v4{vertical-align:-25.757333pt;}
.v5{vertical-align:-24.000000pt;}
.v2{vertical-align:-20.424000pt;}
.v6{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.378133pt;}
.v7{vertical-align:35.200000pt;}
.v3{vertical-align:36.666667pt;}
.ls6{letter-spacing:-5.280000pt;}
.ls9{letter-spacing:-2.640000pt;}
.ls8{letter-spacing:-1.173333pt;}
.ls7{letter-spacing:-0.938667pt;}
.ls3{letter-spacing:-0.858667pt;}
.lsc{letter-spacing:-0.797333pt;}
.ls5{letter-spacing:-0.704000pt;}
.ls4{letter-spacing:-0.469333pt;}
.ls1{letter-spacing:-0.429333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000267pt;}
.lsa{letter-spacing:209.304000pt;}
.lsb{letter-spacing:210.912533pt;}
.ws1{word-spacing:-15.333333pt;}
.ws4{word-spacing:-14.904000pt;}
.ws3{word-spacing:-14.666667pt;}
.ws28{word-spacing:-14.536000pt;}
.ws6{word-spacing:-14.197333pt;}
.ws17{word-spacing:-13.333333pt;}
.wsa{word-spacing:-9.386667pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.429333pt;}
.ws11{word-spacing:0.469333pt;}
.ws12{word-spacing:0.704000pt;}
.ws10{word-spacing:0.858667pt;}
.ws13{word-spacing:0.938667pt;}
.ws26{word-spacing:1.173333pt;}
.ws27{word-spacing:65.736000pt;}
.ws1e{word-spacing:131.196800pt;}
.ws1d{word-spacing:132.284800pt;}
.ws7{word-spacing:134.265067pt;}
.wsb{word-spacing:134.760000pt;}
.wsd{word-spacing:135.848000pt;}
.ws24{word-spacing:145.394133pt;}
.ws1f{word-spacing:145.863467pt;}
.ws1b{word-spacing:146.098133pt;}
.ws21{word-spacing:160.060800pt;}
.wse{word-spacing:173.684800pt;}
.ws14{word-spacing:173.685333pt;}
.ws16{word-spacing:174.773867pt;}
.ws9{word-spacing:189.438400pt;}
.ws1a{word-spacing:204.192000pt;}
.ws19{word-spacing:208.371733pt;}
.ws18{word-spacing:222.207467pt;}
.ws15{word-spacing:228.858133pt;}
.wsf{word-spacing:228.858667pt;}
.ws8{word-spacing:241.140800pt;}
.wsc{word-spacing:244.933333pt;}
.ws20{word-spacing:247.791467pt;}
.ws23{word-spacing:248.879467pt;}
.ws25{word-spacing:254.297067pt;}
.ws22{word-spacing:262.223467pt;}
.ws1c{word-spacing:263.866133pt;}
.ws0{word-spacing:1340.688533pt;}
._21{margin-left:-15.942667pt;}
._20{margin-left:-14.544000pt;}
._3{margin-left:-9.587200pt;}
._26{margin-left:-7.576800pt;}
._4{margin-left:-6.555733pt;}
._6{margin-left:-5.346133pt;}
._2{margin-left:-3.772267pt;}
._0{margin-left:-2.223467pt;}
._5{margin-left:-0.970667pt;}
._1{width:1.478400pt;}
._a{width:2.982933pt;}
._8{width:3.901333pt;}
._7{width:4.794667pt;}
._1a{width:5.707733pt;}
._9{width:6.622933pt;}
._10{width:7.710667pt;}
._17{width:8.821067pt;}
._18{width:9.710933pt;}
._22{width:10.648533pt;}
._13{width:11.616533pt;}
._12{width:13.125333pt;}
._19{width:14.284533pt;}
._15{width:16.921600pt;}
._b{width:18.250667pt;}
._c{width:19.364267pt;}
._16{width:20.500800pt;}
._24{width:21.883733pt;}
._14{width:22.901867pt;}
._1b{width:24.492000pt;}
._d{width:26.221867pt;}
._25{width:27.140000pt;}
._39{width:28.157333pt;}
._1c{width:29.112000pt;}
._e{width:30.176000pt;}
._4a{width:31.226667pt;}
._1f{width:32.837333pt;}
._23{width:34.527733pt;}
._f{width:35.831200pt;}
._1e{width:37.511467pt;}
._1d{width:39.146133pt;}
._49{width:40.154933pt;}
._11{width:49.354667pt;}
._4b{width:52.838667pt;}
._48{width:58.468000pt;}
._34{width:169.864533pt;}
._37{width:171.163733pt;}
._32{width:185.000533pt;}
._36{width:186.050133pt;}
._3e{width:193.442133pt;}
._2c{width:197.239467pt;}
._43{width:199.784533pt;}
._42{width:200.801600pt;}
._33{width:203.487467pt;}
._41{width:205.719467pt;}
._31{width:209.282133pt;}
._30{width:211.906133pt;}
._47{width:213.228800pt;}
._44{width:214.568533pt;}
._46{width:218.578667pt;}
._3c{width:219.916800pt;}
._29{width:223.714133pt;}
._35{width:224.653333pt;}
._38{width:227.176000pt;}
._45{width:228.733867pt;}
._2a{width:235.160533pt;}
._2e{width:241.607467pt;}
._3f{width:248.487467pt;}
._2f{width:249.827200pt;}
._3d{width:268.291200pt;}
._28{width:271.473600pt;}
._2b{width:273.066667pt;}
._3b{width:290.406933pt;}
._2d{width:328.239467pt;}
._40{width:347.172800pt;}
._27{width:595.841067pt;}
._3a{width:614.774400pt;}
.fs6{font-size:34.202667pt;}
.fs5{font-size:35.757333pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:98.645067pt;}
.y42{bottom:98.739600pt;}
.y7b{bottom:99.422800pt;}
.yf9{bottom:100.651067pt;}
.y44{bottom:100.745600pt;}
.y40{bottom:125.180400pt;}
.y2b{bottom:125.334800pt;}
.y79{bottom:133.712933pt;}
.yd6{bottom:138.074933pt;}
.y129{bottom:139.163733pt;}
.y178{bottom:140.727067pt;}
.y157{bottom:140.974133pt;}
.y3f{bottom:143.580400pt;}
.y2a{bottom:143.734800pt;}
.yaa{bottom:144.206667pt;}
.y78{bottom:149.779600pt;}
.yf7{bottom:153.451333pt;}
.yd5{bottom:156.474933pt;}
.y128{bottom:157.563733pt;}
.y177{bottom:159.127067pt;}
.y156{bottom:159.374133pt;}
.y3e{bottom:161.980400pt;}
.y29{bottom:162.134800pt;}
.ya9{bottom:163.104400pt;}
.yf6{bottom:171.851333pt;}
.yd4{bottom:174.874933pt;}
.y127{bottom:175.963733pt;}
.y176{bottom:177.527067pt;}
.y155{bottom:177.774133pt;}
.y3d{bottom:180.380400pt;}
.y28{bottom:180.534800pt;}
.ya8{bottom:182.002000pt;}
.yf5{bottom:190.251333pt;}
.yd3{bottom:193.274933pt;}
.y126{bottom:194.363733pt;}
.y175{bottom:195.927067pt;}
.y154{bottom:196.174133pt;}
.y3c{bottom:198.780400pt;}
.y27{bottom:198.934800pt;}
.ya7{bottom:200.899600pt;}
.yf4{bottom:208.651333pt;}
.yd2{bottom:211.674933pt;}
.y125{bottom:212.763733pt;}
.y174{bottom:214.327067pt;}
.y153{bottom:214.574133pt;}
.y3b{bottom:217.180400pt;}
.y26{bottom:217.334800pt;}
.ya6{bottom:219.797200pt;}
.yf3{bottom:227.051333pt;}
.yd1{bottom:230.074933pt;}
.y124{bottom:231.163733pt;}
.y173{bottom:232.727067pt;}
.y152{bottom:232.974133pt;}
.y3a{bottom:235.580400pt;}
.y25{bottom:235.734800pt;}
.ya5{bottom:238.694933pt;}
.yf2{bottom:245.451333pt;}
.yd0{bottom:248.474933pt;}
.y123{bottom:249.563733pt;}
.y172{bottom:251.127067pt;}
.y151{bottom:251.374133pt;}
.y39{bottom:253.980400pt;}
.y24{bottom:254.134800pt;}
.ya4{bottom:257.592533pt;}
.yf1{bottom:263.851333pt;}
.ycf{bottom:266.874933pt;}
.y122{bottom:267.963733pt;}
.y171{bottom:269.527067pt;}
.y150{bottom:269.774133pt;}
.y38{bottom:272.380400pt;}
.y23{bottom:272.534800pt;}
.ya3{bottom:276.490133pt;}
.yf0{bottom:282.251333pt;}
.yce{bottom:285.274933pt;}
.y121{bottom:286.363733pt;}
.y170{bottom:287.927067pt;}
.y14f{bottom:288.174133pt;}
.y37{bottom:290.780400pt;}
.y22{bottom:290.934800pt;}
.ya2{bottom:295.387867pt;}
.yef{bottom:300.651333pt;}
.ycd{bottom:303.674933pt;}
.y120{bottom:304.763733pt;}
.y16f{bottom:306.327067pt;}
.y14e{bottom:306.574133pt;}
.y36{bottom:309.180400pt;}
.y21{bottom:309.334800pt;}
.ya1{bottom:314.285467pt;}
.yee{bottom:319.051333pt;}
.y1a4{bottom:321.158533pt;}
.ycc{bottom:322.074933pt;}
.y11f{bottom:323.163733pt;}
.y16e{bottom:324.727067pt;}
.y14d{bottom:324.974133pt;}
.y35{bottom:327.580400pt;}
.y20{bottom:327.734800pt;}
.ya0{bottom:333.183067pt;}
.yed{bottom:337.451333pt;}
.ycb{bottom:340.474933pt;}
.y11e{bottom:341.563733pt;}
.y16d{bottom:343.127067pt;}
.y14c{bottom:343.374133pt;}
.y34{bottom:345.980400pt;}
.y1f{bottom:346.134800pt;}
.y9f{bottom:354.253067pt;}
.yec{bottom:355.851333pt;}
.yca{bottom:358.874933pt;}
.y11d{bottom:359.963733pt;}
.y16c{bottom:361.527067pt;}
.y14b{bottom:361.774133pt;}
.y9e{bottom:363.419733pt;}
.y33{bottom:364.380400pt;}
.y1e{bottom:364.534800pt;}
.y19a{bottom:368.610267pt;}
.y1a3{bottom:368.625200pt;}
.yeb{bottom:374.251333pt;}
.y9b{bottom:376.134133pt;}
.yc9{bottom:377.274933pt;}
.y11c{bottom:378.363733pt;}
.y16b{bottom:379.927067pt;}
.y14a{bottom:380.174133pt;}
.y32{bottom:382.780400pt;}
.y1d{bottom:382.934800pt;}
.y199{bottom:387.010267pt;}
.y1a2{bottom:387.025200pt;}
.yea{bottom:392.651333pt;}
.y9a{bottom:394.467467pt;}
.yc8{bottom:395.674933pt;}
.y11b{bottom:396.763733pt;}
.y9d{bottom:396.922133pt;}
.y16a{bottom:398.327067pt;}
.y149{bottom:398.574133pt;}
.y31{bottom:401.180400pt;}
.y1c{bottom:401.334800pt;}
.y198{bottom:405.410267pt;}
.y1a1{bottom:405.425200pt;}
.ye9{bottom:411.051333pt;}
.yc7{bottom:414.074933pt;}
.y11a{bottom:415.163733pt;}
.y9c{bottom:415.255467pt;}
.y169{bottom:416.727067pt;}
.y148{bottom:416.974133pt;}
.y30{bottom:419.580400pt;}
.y1b{bottom:419.734800pt;}
.y197{bottom:423.810267pt;}
.y1a0{bottom:423.825200pt;}
.ye8{bottom:429.451333pt;}
.yc6{bottom:432.474933pt;}
.y119{bottom:433.563733pt;}
.y168{bottom:435.127067pt;}
.y147{bottom:435.374133pt;}
.y2f{bottom:437.980533pt;}
.y1a{bottom:438.134800pt;}
.y196{bottom:442.210267pt;}
.y19f{bottom:442.225200pt;}
.y99{bottom:447.190000pt;}
.ye7{bottom:447.851333pt;}
.yc5{bottom:450.874933pt;}
.y118{bottom:451.963733pt;}
.y167{bottom:453.527067pt;}
.y146{bottom:453.774133pt;}
.y2e{bottom:456.380400pt;}
.y19{bottom:456.534800pt;}
.y195{bottom:460.610267pt;}
.y19e{bottom:460.625200pt;}
.y97{bottom:465.589867pt;}
.ye6{bottom:466.251333pt;}
.yc4{bottom:469.274933pt;}
.y117{bottom:470.363733pt;}
.y98{bottom:470.695867pt;}
.y166{bottom:471.927067pt;}
.y145{bottom:472.174133pt;}
.y2d{bottom:474.780533pt;}
.y18{bottom:474.934800pt;}
.y194{bottom:479.010267pt;}
.y19d{bottom:479.025200pt;}
.ye5{bottom:484.651333pt;}
.yc3{bottom:487.674933pt;}
.y116{bottom:488.763733pt;}
.y165{bottom:490.327067pt;}
.y144{bottom:490.574133pt;}
.y2c{bottom:493.180400pt;}
.y17{bottom:493.334800pt;}
.y96{bottom:496.166267pt;}
.y193{bottom:497.410267pt;}
.y19c{bottom:497.425200pt;}
.ye4{bottom:503.051333pt;}
.yc2{bottom:506.074933pt;}
.y115{bottom:507.163733pt;}
.y164{bottom:508.727067pt;}
.y143{bottom:508.974133pt;}
.y16{bottom:511.734800pt;}
.y95{bottom:514.566267pt;}
.y192{bottom:515.810267pt;}
.y5d{bottom:515.825200pt;}
.y77{bottom:516.072267pt;}
.ye3{bottom:521.451333pt;}
.yc1{bottom:524.474933pt;}
.y163{bottom:527.127067pt;}
.y142{bottom:527.374133pt;}
.y94{bottom:532.966267pt;}
.y191{bottom:534.210267pt;}
.y5c{bottom:534.225200pt;}
.y76{bottom:534.472267pt;}
.y114{bottom:538.223467pt;}
.ye2{bottom:539.851333pt;}
.yc0{bottom:542.874933pt;}
.y162{bottom:545.527067pt;}
.y141{bottom:545.774133pt;}
.y93{bottom:551.366267pt;}
.y190{bottom:552.610267pt;}
.y5b{bottom:552.625200pt;}
.y75{bottom:552.872267pt;}
.y113{bottom:556.743200pt;}
.ye1{bottom:558.251333pt;}
.y15{bottom:559.407067pt;}
.ybf{bottom:561.274933pt;}
.y161{bottom:563.927067pt;}
.y140{bottom:564.174133pt;}
.y92{bottom:569.766267pt;}
.y18f{bottom:571.010267pt;}
.y5a{bottom:571.025200pt;}
.y74{bottom:571.272267pt;}
.y112{bottom:575.262800pt;}
.y14{bottom:575.407067pt;}
.ye0{bottom:576.651333pt;}
.ybe{bottom:579.674933pt;}
.y160{bottom:582.327067pt;}
.y13f{bottom:582.574133pt;}
.y91{bottom:588.166267pt;}
.y18e{bottom:589.410267pt;}
.y59{bottom:589.425200pt;}
.y73{bottom:589.672267pt;}
.y13{bottom:591.407067pt;}
.y111{bottom:593.782533pt;}
.ydf{bottom:595.051333pt;}
.ybd{bottom:598.074933pt;}
.y15f{bottom:600.727067pt;}
.y13e{bottom:600.974133pt;}
.y90{bottom:606.566267pt;}
.y18d{bottom:607.810267pt;}
.y58{bottom:607.825200pt;}
.y72{bottom:608.072267pt;}
.y110{bottom:612.302267pt;}
.yde{bottom:613.451333pt;}
.ybc{bottom:616.474933pt;}
.y12{bottom:618.073733pt;}
.y15e{bottom:619.127067pt;}
.y13d{bottom:619.374133pt;}
.y8f{bottom:624.966267pt;}
.y18c{bottom:626.210267pt;}
.y57{bottom:626.225200pt;}
.y71{bottom:626.472267pt;}
.y10f{bottom:630.821867pt;}
.ydd{bottom:631.851333pt;}
.y11{bottom:634.073733pt;}
.ybb{bottom:634.874933pt;}
.y15d{bottom:637.527067pt;}
.y13c{bottom:637.774133pt;}
.y8e{bottom:643.366267pt;}
.y18b{bottom:644.610267pt;}
.y56{bottom:644.625200pt;}
.y70{bottom:644.872267pt;}
.y10e{bottom:649.341600pt;}
.ydc{bottom:650.251333pt;}
.yba{bottom:653.274933pt;}
.y15c{bottom:655.927067pt;}
.y13b{bottom:656.174133pt;}
.y10{bottom:660.740400pt;}
.y8d{bottom:661.766267pt;}
.y18a{bottom:663.010267pt;}
.y55{bottom:663.025200pt;}
.y6f{bottom:663.272267pt;}
.y10d{bottom:667.861200pt;}
.ydb{bottom:668.651333pt;}
.yb9{bottom:671.674933pt;}
.y15b{bottom:674.327067pt;}
.y13a{bottom:674.574133pt;}
.yf{bottom:676.740400pt;}
.y8c{bottom:680.166267pt;}
.y189{bottom:681.410267pt;}
.y54{bottom:681.425200pt;}
.y6e{bottom:681.672267pt;}
.y10c{bottom:686.380933pt;}
.yda{bottom:687.051333pt;}
.yb8{bottom:690.074933pt;}
.y15a{bottom:692.727067pt;}
.ye{bottom:692.740400pt;}
.y139{bottom:692.974133pt;}
.y8b{bottom:698.566267pt;}
.y188{bottom:699.810267pt;}
.y53{bottom:699.825200pt;}
.y6d{bottom:700.072267pt;}
.y10b{bottom:704.900667pt;}
.yd9{bottom:705.451467pt;}
.yb7{bottom:708.475067pt;}
.yd{bottom:708.740400pt;}
.y159{bottom:711.127067pt;}
.y138{bottom:711.374133pt;}
.y8a{bottom:716.966267pt;}
.y187{bottom:718.210267pt;}
.y52{bottom:718.225200pt;}
.y6c{bottom:718.472267pt;}
.y10a{bottom:723.420267pt;}
.yd8{bottom:723.851333pt;}
.yc{bottom:724.740400pt;}
.yb6{bottom:726.874933pt;}
.y158{bottom:729.527067pt;}
.y137{bottom:729.774133pt;}
.y89{bottom:735.366267pt;}
.y186{bottom:736.610133pt;}
.y51{bottom:736.625200pt;}
.y6b{bottom:736.872267pt;}
.yb{bottom:740.740400pt;}
.y109{bottom:741.940000pt;}
.yd7{bottom:742.251333pt;}
.yb5{bottom:745.274933pt;}
.y88{bottom:753.766267pt;}
.y185{bottom:755.010267pt;}
.y19b{bottom:755.025200pt;}
.y6a{bottom:755.272267pt;}
.ya{bottom:756.740400pt;}
.y108{bottom:760.459733pt;}
.y12b{bottom:767.388933pt;}
.y87{bottom:772.166400pt;}
.y9{bottom:772.740400pt;}
.y184{bottom:773.410267pt;}
.y50{bottom:773.425200pt;}
.y69{bottom:773.672267pt;}
.y107{bottom:778.979467pt;}
.yb4{bottom:782.692267pt;}
.y86{bottom:790.566267pt;}
.y183{bottom:791.810267pt;}
.y4f{bottom:791.825200pt;}
.y68{bottom:792.072267pt;}
.y135{bottom:792.674400pt;}
.y106{bottom:797.499067pt;}
.yb3{bottom:798.692267pt;}
.y134{bottom:801.474400pt;}
.y85{bottom:808.966267pt;}
.y182{bottom:810.210267pt;}
.y4e{bottom:810.225200pt;}
.y136{bottom:810.274267pt;}
.y67{bottom:810.472267pt;}
.y8{bottom:811.590267pt;}
.yb2{bottom:814.692267pt;}
.y105{bottom:816.018667pt;}
.y84{bottom:827.366267pt;}
.y181{bottom:828.610133pt;}
.y4d{bottom:828.625200pt;}
.y66{bottom:828.872267pt;}
.y7{bottom:829.990267pt;}
.y104{bottom:834.538400pt;}
.yb1{bottom:836.787733pt;}
.y132{bottom:838.028667pt;}
.y83{bottom:845.766400pt;}
.y131{bottom:846.828667pt;}
.y180{bottom:847.010267pt;}
.y4c{bottom:847.025200pt;}
.y65{bottom:847.272267pt;}
.y103{bottom:853.058133pt;}
.y133{bottom:855.628667pt;}
.yb0{bottom:855.685333pt;}
.y6{bottom:859.056933pt;}
.y82{bottom:864.166400pt;}
.y17f{bottom:865.410267pt;}
.y4b{bottom:865.425200pt;}
.y64{bottom:865.672267pt;}
.y102{bottom:872.804800pt;}
.yaf{bottom:874.583067pt;}
.y5{bottom:881.456933pt;}
.y101{bottom:881.971467pt;}
.y81{bottom:882.566267pt;}
.y17e{bottom:883.810267pt;}
.y4a{bottom:883.825200pt;}
.y63{bottom:884.072267pt;}
.y130{bottom:885.564800pt;}
.yfe{bottom:890.404267pt;}
.yae{bottom:893.480667pt;}
.y80{bottom:900.966267pt;}
.y17d{bottom:902.210267pt;}
.y49{bottom:902.225200pt;}
.y62{bottom:902.472267pt;}
.y12c{bottom:903.164933pt;}
.y4{bottom:903.856933pt;}
.y12d{bottom:908.048933pt;}
.yfd{bottom:908.737600pt;}
.y100{bottom:910.057733pt;}
.yad{bottom:912.378400pt;}
.y7f{bottom:919.366267pt;}
.y17c{bottom:920.610133pt;}
.y48{bottom:920.625200pt;}
.y12e{bottom:920.764933pt;}
.y61{bottom:920.872267pt;}
.y12f{bottom:925.648933pt;}
.yff{bottom:928.391067pt;}
.yac{bottom:931.276000pt;}
.y3{bottom:936.923600pt;}
.y7e{bottom:937.766400pt;}
.y17b{bottom:939.010267pt;}
.y47{bottom:939.025200pt;}
.y60{bottom:939.272267pt;}
.yab{bottom:950.173600pt;}
.y7d{bottom:956.166400pt;}
.y17a{bottom:957.410267pt;}
.y46{bottom:957.425200pt;}
.y5f{bottom:957.672267pt;}
.yfc{bottom:959.315867pt;}
.y7c{bottom:974.566267pt;}
.y179{bottom:975.810267pt;}
.y45{bottom:975.825200pt;}
.y5e{bottom:976.072267pt;}
.y12a{bottom:977.715867pt;}
.yfa{bottom:979.049200pt;}
.y41{bottom:983.369200pt;}
.yfb{bottom:985.049200pt;}
.y7a{bottom:1008.215867pt;}
.y1a5{bottom:1008.404800pt;}
.yf8{bottom:1009.156133pt;}
.y43{bottom:1009.538533pt;}
.y2{bottom:1014.068400pt;}
.h10{height:30.144440pt;}
.hf{height:32.169729pt;}
.hc{height:33.631990pt;}
.h3{height:40.734375pt;}
.hb{height:42.166667pt;}
.h7{height:42.585938pt;}
.h2{height:46.112508pt;}
.h8{height:47.005208pt;}
.h4{height:51.705729pt;}
.h9{height:53.037760pt;}
.ha{height:54.055990pt;}
.h5{height:59.955729pt;}
.h6{height:64.567708pt;}
.h12{height:86.905196pt;}
.h11{height:86.905729pt;}
.hd{height:88.372396pt;}
.he{height:125.039062pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:56.692933pt;}
.x18{left:57.826800pt;}
.x2a{left:62.120800pt;}
.x10{left:64.714400pt;}
.x24{left:66.826267pt;}
.x13{left:79.370133pt;}
.x3e{left:85.327600pt;}
.x14{left:90.443333pt;}
.x1{left:94.488133pt;}
.x1b{left:96.000000pt;}
.x2{left:98.834533pt;}
.x1d{left:104.621467pt;}
.xc{left:117.165333pt;}
.xb{left:131.716533pt;}
.x3f{left:138.789733pt;}
.x48{left:147.750667pt;}
.x4a{left:150.198933pt;}
.x2b{left:164.683867pt;}
.x7{left:175.511867pt;}
.x6{left:197.514533pt;}
.x26{left:204.140667pt;}
.x1e{left:208.874000pt;}
.x28{left:211.968133pt;}
.x9{left:214.292267pt;}
.x20{left:216.701467pt;}
.x49{left:220.250800pt;}
.x2f{left:222.505600pt;}
.x2e{left:231.561333pt;}
.x5{left:239.350133pt;}
.x2c{left:241.635733pt;}
.x27{left:245.479333pt;}
.x1f{left:250.212667pt;}
.x2d{left:267.094667pt;}
.x19{left:271.988800pt;}
.x25{left:273.500667pt;}
.x8{left:286.035333pt;}
.x21{left:305.781600pt;}
.x32{left:312.280800pt;}
.xa{left:325.474000pt;}
.x33{left:326.600133pt;}
.x41{left:335.734667pt;}
.x46{left:339.079067pt;}
.x40{left:342.745733pt;}
.x30{left:345.730267pt;}
.x31{left:371.189200pt;}
.x16{left:387.401600pt;}
.x15{left:410.078800pt;}
.x17{left:421.331733pt;}
.x3{left:424.100800pt;}
.xe{left:425.196800pt;}
.x34{left:428.390400pt;}
.x42{left:430.074933pt;}
.x4{left:431.140800pt;}
.x1c{left:439.300800pt;}
.x1a{left:445.984267pt;}
.xd{left:447.874000pt;}
.x35{left:453.849333pt;}
.x39{left:498.141467pt;}
.x38{left:507.197067pt;}
.x47{left:509.852933pt;}
.x43{left:514.286933pt;}
.x36{left:517.271467pt;}
.x37{left:542.730400pt;}
.x29{left:565.430667pt;}
.x22{left:570.381600pt;}
.x23{left:582.953733pt;}
.x3c{left:586.080667pt;}
.x11{left:597.320267pt;}
.x3d{left:600.400000pt;}
.x45{left:609.534400pt;}
.x44{left:616.545467pt;}
.x3a{left:619.530133pt;}
.x3b{left:644.989067pt;}
.xf{left:681.764933pt;}
}




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