
    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_661f39f9494236666751e015.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_c2d4d167f22dc3af44a15750.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_65035d2fdd56e6cf4c1e7567.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016113;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_4df4762e06cd94c60992d273.woff')format("woff");}.ff4{font-family:ff4;line-height:1.024414;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_a5f1ca2aa6c7206b0cb9f4ed.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_0cc7404469f7cd885c4cdc3f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.102051;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_9864ed31cdbb1f340f3b04a8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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;}
.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);}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.096400px;}
.ls10{letter-spacing:-7.371000px;}
.ls2e{letter-spacing:-6.156000px;}
.ls20{letter-spacing:-3.105000px;}
.ls2b{letter-spacing:-2.898000px;}
.ls29{letter-spacing:-2.691000px;}
.ls16{letter-spacing:-2.277000px;}
.ls6{letter-spacing:-1.620000px;}
.ls18{letter-spacing:-1.566000px;}
.ls2a{letter-spacing:-1.380000px;}
.ls28{letter-spacing:-1.311000px;}
.ls7{letter-spacing:-1.260000px;}
.ls3f{letter-spacing:-1.242000px;}
.ls17{letter-spacing:-0.966000px;}
.ls1f{letter-spacing:-0.897000px;}
.ls15{letter-spacing:-0.855000px;}
.ls3e{letter-spacing:-0.552000px;}
.ls12{letter-spacing:-0.480000px;}
.ls5{letter-spacing:-0.240000px;}
.ls40{letter-spacing:-0.081000px;}
.ls27{letter-spacing:-0.069000px;}
.ls37{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000300px;}
.ls31{letter-spacing:0.069000px;}
.ls25{letter-spacing:0.345000px;}
.ls14{letter-spacing:0.437400px;}
.ls35{letter-spacing:0.828000px;}
.ls21{letter-spacing:1.587000px;}
.ls1b{letter-spacing:1.863000px;}
.ls24{letter-spacing:1.932000px;}
.lsc{letter-spacing:2.400000px;}
.ls11{letter-spacing:3.346500px;}
.ls33{letter-spacing:3.381000px;}
.ls34{letter-spacing:3.450000px;}
.lse{letter-spacing:3.600000px;}
.ls0{letter-spacing:3.948000px;}
.ls19{letter-spacing:4.146900px;}
.ls1{letter-spacing:4.200000px;}
.ls1a{letter-spacing:4.209000px;}
.ls32{letter-spacing:4.347000px;}
.ls38{letter-spacing:4.457400px;}
.ls39{letter-spacing:4.485000px;}
.ls3a{letter-spacing:4.491900px;}
.ls3c{letter-spacing:4.830000px;}
.lsd{letter-spacing:5.025000px;}
.ls13{letter-spacing:5.175000px;}
.ls9{letter-spacing:5.264700px;}
.ls8{letter-spacing:5.760000px;}
.lsf{letter-spacing:5.880000px;}
.ls36{letter-spacing:5.920200px;}
.ls3{letter-spacing:6.000000px;}
.ls30{letter-spacing:6.210000px;}
.ls43{letter-spacing:6.300000px;}
.ls26{letter-spacing:6.396300px;}
.ls3d{letter-spacing:6.617100px;}
.ls2f{letter-spacing:7.176000px;}
.ls22{letter-spacing:7.762500px;}
.ls23{letter-spacing:7.797000px;}
.ls2d{letter-spacing:8.160156px;}
.ls2c{letter-spacing:8.160756px;}
.ls41{letter-spacing:8.316000px;}
.ls4{letter-spacing:8.400000px;}
.ls1e{letter-spacing:8.645700px;}
.ls1c{letter-spacing:8.694000px;}
.ls1d{letter-spacing:8.700900px;}
.ls42{letter-spacing:8.820000px;}
.ls3b{letter-spacing:8.901000px;}
.lsb{letter-spacing:9.556500px;}
.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;}
}
.ws2f{word-spacing:-26.523000px;}
.ws9{word-spacing:-26.100000px;}
.ws2d{word-spacing:-26.019000px;}
.ws28{word-spacing:-24.675000px;}
.ws32{word-spacing:-22.860000px;}
.wsa{word-spacing:-22.740000px;}
.ws1{word-spacing:-22.620000px;}
.ws0{word-spacing:-22.344000px;}
.ws14{word-spacing:-20.232000px;}
.ws24{word-spacing:-20.217000px;}
.wsc{word-spacing:-19.389000px;}
.ws1c{word-spacing:-19.320000px;}
.ws1a{word-spacing:-18.492000px;}
.ws1e{word-spacing:-18.009000px;}
.ws2e{word-spacing:-17.703000px;}
.wsd{word-spacing:-17.043000px;}
.ws2{word-spacing:-16.860000px;}
.ws29{word-spacing:-16.491000px;}
.ws11{word-spacing:-16.380000px;}
.ws2a{word-spacing:-15.801000px;}
.ws30{word-spacing:-15.561000px;}
.wsb{word-spacing:-15.390000px;}
.ws22{word-spacing:-15.174000px;}
.ws33{word-spacing:-14.820000px;}
.ws13{word-spacing:-14.766000px;}
.ws1d{word-spacing:-14.352000px;}
.ws1f{word-spacing:-14.145000px;}
.ws1b{word-spacing:-13.938000px;}
.ws15{word-spacing:-13.338000px;}
.ws26{word-spacing:-13.284000px;}
.ws16{word-spacing:-11.772000px;}
.wse{word-spacing:-11.303787px;}
.ws5{word-spacing:-8.400000px;}
.ws31{word-spacing:-6.300000px;}
.ws4{word-spacing:-6.000000px;}
.ws8{word-spacing:-4.200000px;}
.ws10{word-spacing:-3.600000px;}
.wsf{word-spacing:-2.400000px;}
.ws19{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws2c{word-spacing:0.081000px;}
.ws6{word-spacing:0.240000px;}
.ws21{word-spacing:0.276000px;}
.ws17{word-spacing:0.855000px;}
.ws18{word-spacing:0.966000px;}
.ws20{word-spacing:1.311000px;}
.ws2b{word-spacing:1.380000px;}
.ws27{word-spacing:1.458000px;}
.ws7{word-spacing:1.620000px;}
.ws25{word-spacing:2.277000px;}
.ws12{word-spacing:2.376000px;}
.ws23{word-spacing:6.156000px;}
._15{margin-left:-9.597900px;}
._d{margin-left:-8.424000px;}
._c{margin-left:-6.614400px;}
._8{margin-left:-5.587500px;}
._6{margin-left:-3.906900px;}
._3{margin-left:-2.771100px;}
._7{margin-left:-1.086900px;}
._4{width:1.008000px;}
._1{width:2.400000px;}
._b{width:3.542400px;}
._e{width:4.671900px;}
._5{width:5.760000px;}
._9{width:7.722000px;}
._a{width:9.606000px;}
._14{width:10.699800px;}
._16{width:11.811000px;}
._1f{width:13.011300px;}
._11{width:14.178900px;}
._10{width:15.563700px;}
._26{width:16.759500px;}
._19{width:17.832000px;}
._20{width:20.651700px;}
._1b{width:24.024600px;}
._23{width:25.436400px;}
._1c{width:28.221000px;}
._21{width:29.808000px;}
._1e{width:31.533000px;}
._27{width:32.718000px;}
._25{width:37.078800px;}
._17{width:43.445160px;}
._f{width:85.554000px;}
._13{width:260.610000px;}
._1a{width:456.184800px;}
._12{width:457.342200px;}
._28{width:459.353100px;}
._24{width:461.866800px;}
._0{width:578.400000px;}
._18{width:956.206200px;}
._1d{width:958.831200px;}
._22{width:962.881200px;}
._2{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fsc{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y8c{bottom:103.408650px;}
.y13f{bottom:106.230150px;}
.yd1{bottom:106.268850px;}
.yf5{bottom:106.278450px;}
.y42{bottom:106.296300px;}
.y1f{bottom:106.308600px;}
.y15f{bottom:106.319550px;}
.yab{bottom:109.294800px;}
.y8b{bottom:120.661650px;}
.yf4{bottom:123.531450px;}
.y41{bottom:126.544800px;}
.y13e{bottom:126.602400px;}
.yd0{bottom:127.227600px;}
.y15e{bottom:127.314300px;}
.y11b{bottom:127.771200px;}
.y1e{bottom:128.298600px;}
.y8a{bottom:137.914650px;}
.yf3{bottom:140.784450px;}
.y11a{bottom:145.024200px;}
.y64{bottom:145.033200px;}
.y13d{bottom:146.974650px;}
.y40{bottom:148.046700px;}
.ycf{bottom:148.186350px;}
.y15d{bottom:148.309050px;}
.y1d{bottom:150.288600px;}
.yaa{bottom:153.380100px;}
.y89{bottom:155.167650px;}
.yf2{bottom:158.037450px;}
.y119{bottom:162.277200px;}
.y63{bottom:162.286200px;}
.y13c{bottom:167.346900px;}
.yce{bottom:169.145100px;}
.y1c{bottom:172.329750px;}
.y88{bottom:172.420650px;}
.ya9{bottom:173.631600px;}
.yf1{bottom:175.290450px;}
.y15c{bottom:177.808800px;}
.y118{bottom:179.530200px;}
.y62{bottom:179.539200px;}
.y13b{bottom:187.719150px;}
.y87{bottom:189.673650px;}
.ycd{bottom:190.103850px;}
.y19b{bottom:191.934750px;}
.y3f{bottom:192.035250px;}
.yf0{bottom:192.543450px;}
.y1b{bottom:192.819750px;}
.ya8{bottom:193.883100px;}
.y117{bottom:196.783200px;}
.y61{bottom:196.792200px;}
.y15b{bottom:198.803550px;}
.y86{bottom:206.926650px;}
.y13a{bottom:208.091400px;}
.yef{bottom:209.796450px;}
.ycc{bottom:211.062600px;}
.y19a{bottom:212.184750px;}
.y1a{bottom:213.309750px;}
.y3e{bottom:213.546000px;}
.y116{bottom:214.036200px;}
.y60{bottom:214.045200px;}
.ya7{bottom:214.134600px;}
.y85{bottom:224.179650px;}
.y17b{bottom:226.007850px;}
.y15a{bottom:228.303300px;}
.y139{bottom:228.463650px;}
.yee{bottom:230.044950px;}
.y115{bottom:231.289200px;}
.y5f{bottom:231.298200px;}
.ycb{bottom:232.021350px;}
.y199{bottom:232.434750px;}
.y19{bottom:233.799750px;}
.ya6{bottom:234.386100px;}
.y3d{bottom:235.056750px;}
.y84{bottom:244.428150px;}
.y17a{bottom:246.262350px;}
.y114{bottom:248.542200px;}
.yed{bottom:248.542500px;}
.y138{bottom:248.835900px;}
.y5e{bottom:251.546700px;}
.y198{bottom:252.684750px;}
.yca{bottom:252.980100px;}
.y18{bottom:254.289750px;}
.ya5{bottom:254.637600px;}
.y3c{bottom:256.567500px;}
.y83{bottom:262.931550px;}
.y113{bottom:265.795200px;}
.yec{bottom:265.795500px;}
.y137{bottom:269.208150px;}
.y5d{bottom:273.048750px;}
.yc9{bottom:273.938850px;}
.y17{bottom:274.779750px;}
.ya4{bottom:274.889100px;}
.y179{bottom:275.021850px;}
.y3b{bottom:278.063400px;}
.y159{bottom:279.805800px;}
.y112{bottom:283.048200px;}
.yeb{bottom:283.048500px;}
.y82{bottom:283.180050px;}
.y197{bottom:285.684750px;}
.y136{bottom:289.580400px;}
.yc8{bottom:294.897600px;}
.ya3{bottom:295.140600px;}
.y16{bottom:295.269750px;}
.y178{bottom:295.276350px;}
.y3a{bottom:299.574150px;}
.y158{bottom:300.800550px;}
.y81{bottom:301.671600px;}
.y111{bottom:303.296700px;}
.yea{bottom:303.297000px;}
.ya2{bottom:315.392100px;}
.y15{bottom:315.759750px;}
.yc7{bottom:315.856350px;}
.y80{bottom:318.924600px;}
.y39{bottom:321.055050px;}
.y157{bottom:321.795300px;}
.ye9{bottom:321.797700px;}
.y177{bottom:324.035850px;}
.y196{bottom:327.189750px;}
.y135{bottom:331.204800px;}
.ya1{bottom:335.643600px;}
.y7f{bottom:336.177600px;}
.y14{bottom:336.249750px;}
.yc6{bottom:336.815100px;}
.ye8{bottom:339.050700px;}
.y38{bottom:342.565800px;}
.y156{bottom:342.790050px;}
.y195{bottom:346.689750px;}
.y110{bottom:347.370000px;}
.y176{bottom:352.795350px;}
.y7e{bottom:353.430600px;}
.ya0{bottom:355.895100px;}
.y13{bottom:356.739750px;}
.yc5{bottom:357.773850px;}
.ye7{bottom:359.299200px;}
.y155{bottom:363.784800px;}
.y37{bottom:364.076550px;}
.y194{bottom:366.189750px;}
.y10f{bottom:367.932000px;}
.y7d{bottom:370.683600px;}
.y175{bottom:373.049850px;}
.y9f{bottom:376.146600px;}
.y12{bottom:377.229750px;}
.yc4{bottom:378.732600px;}
.y36{bottom:385.587300px;}
.y193{bottom:385.689750px;}
.y10e{bottom:388.494000px;}
.y7c{bottom:390.932100px;}
.y154{bottom:393.284550px;}
.y174{bottom:393.304350px;}
.y134{bottom:393.395100px;}
.y9e{bottom:396.398100px;}
.y11{bottom:397.719750px;}
.yc3{bottom:399.691350px;}
.ye6{bottom:403.323600px;}
.y192{bottom:405.189750px;}
.y35{bottom:407.098050px;}
.y10d{bottom:409.056000px;}
.y133{bottom:413.767350px;}
.y153{bottom:414.279300px;}
.y9d{bottom:416.649600px;}
.y5c{bottom:416.695350px;}
.yc2{bottom:420.650100px;}
.y173{bottom:422.063850px;}
.ye5{bottom:423.730350px;}
.y191{bottom:424.689750px;}
.y10c{bottom:429.618000px;}
.y10{bottom:430.974750px;}
.y132{bottom:434.139600px;}
.y7b{bottom:434.948850px;}
.y152{bottom:435.274050px;}
.y9c{bottom:436.901100px;}
.y5b{bottom:436.946850px;}
.yc1{bottom:441.608850px;}
.y172{bottom:442.318350px;}
.ye4{bottom:444.143250px;}
.y190{bottom:444.189750px;}
.y34{bottom:449.861250px;}
.y10b{bottom:450.180000px;}
.y131{bottom:454.511850px;}
.y7a{bottom:455.189850px;}
.y151{bottom:456.268800px;}
.y9b{bottom:457.152600px;}
.y5a{bottom:457.198350px;}
.yc0{bottom:462.567600px;}
.y18f{bottom:463.689750px;}
.ye3{bottom:464.550000px;}
.y10a{bottom:470.742000px;}
.y171{bottom:471.077850px;}
.y130{bottom:474.884100px;}
.y79{bottom:475.441350px;}
.y150{bottom:477.263550px;}
.y9a{bottom:477.404100px;}
.y59{bottom:477.449850px;}
.y18e{bottom:483.189750px;}
.ybf{bottom:483.526350px;}
.ye2{bottom:484.959750px;}
.yf{bottom:489.740400px;}
.y170{bottom:491.332350px;}
.y109{bottom:491.461350px;}
.y12f{bottom:495.256350px;}
.y78{bottom:495.692850px;}
.y99{bottom:497.655600px;}
.y58{bottom:497.692350px;}
.y18d{bottom:502.689750px;}
.ybe{bottom:504.485100px;}
.ye1{bottom:505.366500px;}
.y14f{bottom:506.763300px;}
.y108{bottom:512.023350px;}
.y33{bottom:513.368850px;}
.y12e{bottom:515.628600px;}
.y77{bottom:515.944350px;}
.ye{bottom:517.733400px;}
.y98{bottom:517.907100px;}
.y57{bottom:517.943850px;}
.y16f{bottom:520.091850px;}
.y18c{bottom:522.189750px;}
.ybd{bottom:525.443850px;}
.y14e{bottom:527.758050px;}
.y107{bottom:532.585350px;}
.y32{bottom:535.628850px;}
.y12d{bottom:536.000850px;}
.y76{bottom:536.195850px;}
.y97{bottom:538.158600px;}
.y56{bottom:538.195350px;}
.y16e{bottom:540.346350px;}
.y18b{bottom:541.689750px;}
.yd{bottom:545.726400px;}
.ybc{bottom:546.402600px;}
.ye0{bottom:547.039350px;}
.y14d{bottom:548.752800px;}
.y106{bottom:553.147350px;}
.y12c{bottom:556.373100px;}
.y75{bottom:556.447350px;}
.y31{bottom:557.888850px;}
.y96{bottom:558.410100px;}
.y55{bottom:558.446850px;}
.y16d{bottom:560.600850px;}
.y18a{bottom:561.189750px;}
.ybb{bottom:567.361350px;}
.y14c{bottom:569.747550px;}
.ydf{bottom:571.197600px;}
.y105{bottom:573.709350px;}
.y74{bottom:576.698850px;}
.y12b{bottom:576.745350px;}
.y95{bottom:578.661600px;}
.y54{bottom:578.698350px;}
.y30{bottom:580.047750px;}
.y189{bottom:580.689750px;}
.yba{bottom:588.320100px;}
.y16c{bottom:589.360350px;}
.y14b{bottom:590.742300px;}
.y104{bottom:594.271350px;}
.yc{bottom:594.994800px;}
.yde{bottom:595.355850px;}
.y73{bottom:596.948850px;}
.y12a{bottom:597.117600px;}
.y94{bottom:598.913100px;}
.y53{bottom:598.949850px;}
.y188{bottom:600.189750px;}
.y2f{bottom:600.807750px;}
.yb9{bottom:609.278850px;}
.y16b{bottom:609.614850px;}
.y14a{bottom:611.737050px;}
.y103{bottom:614.833350px;}
.y72{bottom:617.198850px;}
.y129{bottom:617.489850px;}
.y93{bottom:619.164600px;}
.y52{bottom:619.180350px;}
.y187{bottom:619.689750px;}
.y2e{bottom:621.567750px;}
.yb{bottom:627.475800px;}
.yb8{bottom:630.237600px;}
.y149{bottom:632.731800px;}
.y102{bottom:635.395350px;}
.y71{bottom:637.436850px;}
.y128{bottom:637.862100px;}
.y16a{bottom:638.374350px;}
.y186{bottom:639.189750px;}
.y92{bottom:639.416100px;}
.y51{bottom:639.431850px;}
.y2d{bottom:642.327750px;}
.yb7{bottom:651.196350px;}
.y101{bottom:655.957350px;}
.y70{bottom:657.688350px;}
.ydd{bottom:657.786450px;}
.y127{bottom:658.234350px;}
.y169{bottom:658.628850px;}
.y185{bottom:658.689750px;}
.y91{bottom:659.667600px;}
.y50{bottom:659.683350px;}
.ya{bottom:659.983800px;}
.y148{bottom:662.231550px;}
.y2c{bottom:663.087750px;}
.yb6{bottom:672.155100px;}
.y100{bottom:676.519350px;}
.y6f{bottom:677.939850px;}
.y184{bottom:678.189750px;}
.ydc{bottom:678.227100px;}
.y126{bottom:678.606600px;}
.y90{bottom:679.919100px;}
.y4f{bottom:679.934850px;}
.y2b{bottom:683.847750px;}
.y168{bottom:687.388350px;}
.y9{bottom:692.464800px;}
.yb5{bottom:693.113850px;}
.yff{bottom:697.081350px;}
.y183{bottom:697.689750px;}
.y6e{bottom:698.191350px;}
.ydb{bottom:698.633850px;}
.y125{bottom:698.978850px;}
.y8f{bottom:700.170600px;}
.y4e{bottom:700.186350px;}
.y2a{bottom:704.607750px;}
.y167{bottom:707.642850px;}
.yb4{bottom:714.072600px;}
.y182{bottom:717.189750px;}
.yfe{bottom:717.643350px;}
.y6d{bottom:718.442850px;}
.yda{bottom:719.040600px;}
.y124{bottom:719.351100px;}
.y8e{bottom:720.422100px;}
.y4d{bottom:720.437850px;}
.y29{bottom:725.367750px;}
.y147{bottom:734.755350px;}
.yb3{bottom:735.031350px;}
.y166{bottom:736.402350px;}
.y181{bottom:736.689750px;}
.yfd{bottom:738.205350px;}
.y6c{bottom:738.694350px;}
.yd9{bottom:739.447350px;}
.y123{bottom:739.723350px;}
.y8d{bottom:740.673600px;}
.y4c{bottom:740.689350px;}
.y28{bottom:746.127750px;}
.y8{bottom:754.744350px;}
.y146{bottom:755.748600px;}
.yb2{bottom:755.990100px;}
.y180{bottom:756.189750px;}
.yfc{bottom:758.767350px;}
.y6b{bottom:758.945850px;}
.yd8{bottom:759.854100px;}
.y122{bottom:760.095600px;}
.y4b{bottom:760.940850px;}
.y165{bottom:765.161850px;}
.y27{bottom:766.887750px;}
.y145{bottom:776.741850px;}
.yb1{bottom:776.948850px;}
.y6a{bottom:779.197350px;}
.yfb{bottom:779.329350px;}
.yd7{bottom:780.260850px;}
.y121{bottom:780.467850px;}
.y4a{bottom:781.192350px;}
.y7{bottom:785.239350px;}
.y26{bottom:787.647750px;}
.y17f{bottom:788.439750px;}
.y164{bottom:793.921350px;}
.y144{bottom:797.735100px;}
.yb0{bottom:797.907600px;}
.y69{bottom:799.448850px;}
.yfa{bottom:799.891350px;}
.yd6{bottom:800.667600px;}
.y120{bottom:800.840100px;}
.y49{bottom:801.443850px;}
.y6{bottom:807.229350px;}
.y25{bottom:808.407750px;}
.y163{bottom:814.175850px;}
.y143{bottom:818.728350px;}
.yaf{bottom:818.866350px;}
.y68{bottom:819.700350px;}
.yf9{bottom:820.453350px;}
.yd5{bottom:821.074350px;}
.y11f{bottom:821.212350px;}
.y48{bottom:821.695350px;}
.y24{bottom:829.167750px;}
.y5{bottom:829.219350px;}
.y162{bottom:834.430350px;}
.y142{bottom:839.721600px;}
.yae{bottom:839.825100px;}
.yf8{bottom:841.015350px;}
.yd4{bottom:841.481100px;}
.y11e{bottom:841.584600px;}
.y47{bottom:841.946850px;}
.y17e{bottom:846.195450px;}
.y23{bottom:849.927750px;}
.y67{bottom:852.713700px;}
.y4{bottom:859.714350px;}
.y141{bottom:860.714850px;}
.yad{bottom:860.783850px;}
.yf7{bottom:861.577350px;}
.yd3{bottom:861.887850px;}
.y11d{bottom:861.956850px;}
.y46{bottom:862.198350px;}
.y161{bottom:863.189850px;}
.y22{bottom:870.687750px;}
.y17d{bottom:873.201450px;}
.y66{bottom:876.709950px;}
.y3{bottom:881.704350px;}
.y140{bottom:881.708100px;}
.yac{bottom:881.742600px;}
.yf6{bottom:882.139350px;}
.yd2{bottom:882.294600px;}
.y11c{bottom:882.329100px;}
.y45{bottom:882.449850px;}
.y160{bottom:883.444350px;}
.y17c{bottom:900.207450px;}
.y65{bottom:900.706200px;}
.y44{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.197750px;}
.y20{bottom:948.189000px;}
.y43{bottom:966.189000px;}
.he{height:33.870539px;}
.hd{height:34.714289px;}
.h8{height:40.757812px;}
.hf{height:45.852539px;}
.h12{height:46.696289px;}
.h4{height:50.947266px;}
.h7{height:51.884766px;}
.h3{height:53.494629px;}
.h16{height:54.479004px;}
.hb{height:58.589355px;}
.h14{height:58.595355px;}
.h11{height:58.625355px;}
.h13{height:58.643355px;}
.h10{height:58.673355px;}
.hc{height:58.708755px;}
.ha{height:59.667480px;}
.h15{height:60.897469px;}
.h2{height:63.684082px;}
.h9{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:82.214250px;}
.x6{left:83.895600px;}
.x1{left:85.039350px;}
.x9{left:86.346900px;}
.x4{left:104.655600px;}
.x7{left:105.683550px;}
.xe{left:106.690800px;}
.xb{left:114.826650px;}
.x10{left:117.292500px;}
.xf{left:118.327500px;}
.xa{left:119.587650px;}
.xd{left:147.785400px;}
.xc{left:149.016150px;}
.x8{left:212.663850px;}
.x3{left:231.893400px;}
.x2{left:233.415450px;}
@media print{
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.196800pt;}
.ls10{letter-spacing:-6.552000pt;}
.ls2e{letter-spacing:-5.472000pt;}
.ls20{letter-spacing:-2.760000pt;}
.ls2b{letter-spacing:-2.576000pt;}
.ls29{letter-spacing:-2.392000pt;}
.ls16{letter-spacing:-2.024000pt;}
.ls6{letter-spacing:-1.440000pt;}
.ls18{letter-spacing:-1.392000pt;}
.ls2a{letter-spacing:-1.226667pt;}
.ls28{letter-spacing:-1.165333pt;}
.ls7{letter-spacing:-1.120000pt;}
.ls3f{letter-spacing:-1.104000pt;}
.ls17{letter-spacing:-0.858667pt;}
.ls1f{letter-spacing:-0.797333pt;}
.ls15{letter-spacing:-0.760000pt;}
.ls3e{letter-spacing:-0.490667pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls40{letter-spacing:-0.072000pt;}
.ls27{letter-spacing:-0.061333pt;}
.ls37{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000267pt;}
.ls31{letter-spacing:0.061333pt;}
.ls25{letter-spacing:0.306667pt;}
.ls14{letter-spacing:0.388800pt;}
.ls35{letter-spacing:0.736000pt;}
.ls21{letter-spacing:1.410667pt;}
.ls1b{letter-spacing:1.656000pt;}
.ls24{letter-spacing:1.717333pt;}
.lsc{letter-spacing:2.133333pt;}
.ls11{letter-spacing:2.974667pt;}
.ls33{letter-spacing:3.005333pt;}
.ls34{letter-spacing:3.066667pt;}
.lse{letter-spacing:3.200000pt;}
.ls0{letter-spacing:3.509333pt;}
.ls19{letter-spacing:3.686133pt;}
.ls1{letter-spacing:3.733333pt;}
.ls1a{letter-spacing:3.741333pt;}
.ls32{letter-spacing:3.864000pt;}
.ls38{letter-spacing:3.962133pt;}
.ls39{letter-spacing:3.986667pt;}
.ls3a{letter-spacing:3.992800pt;}
.ls3c{letter-spacing:4.293333pt;}
.lsd{letter-spacing:4.466667pt;}
.ls13{letter-spacing:4.600000pt;}
.ls9{letter-spacing:4.679733pt;}
.ls8{letter-spacing:5.120000pt;}
.lsf{letter-spacing:5.226667pt;}
.ls36{letter-spacing:5.262400pt;}
.ls3{letter-spacing:5.333333pt;}
.ls30{letter-spacing:5.520000pt;}
.ls43{letter-spacing:5.600000pt;}
.ls26{letter-spacing:5.685600pt;}
.ls3d{letter-spacing:5.881867pt;}
.ls2f{letter-spacing:6.378667pt;}
.ls22{letter-spacing:6.900000pt;}
.ls23{letter-spacing:6.930667pt;}
.ls2d{letter-spacing:7.253472pt;}
.ls2c{letter-spacing:7.254005pt;}
.ls41{letter-spacing:7.392000pt;}
.ls4{letter-spacing:7.466667pt;}
.ls1e{letter-spacing:7.685067pt;}
.ls1c{letter-spacing:7.728000pt;}
.ls1d{letter-spacing:7.734133pt;}
.ls42{letter-spacing:7.840000pt;}
.ls3b{letter-spacing:7.912000pt;}
.lsb{letter-spacing:8.494667pt;}
.ws2f{word-spacing:-23.576000pt;}
.ws9{word-spacing:-23.200000pt;}
.ws2d{word-spacing:-23.128000pt;}
.ws28{word-spacing:-21.933333pt;}
.ws32{word-spacing:-20.320000pt;}
.wsa{word-spacing:-20.213333pt;}
.ws1{word-spacing:-20.106667pt;}
.ws0{word-spacing:-19.861333pt;}
.ws14{word-spacing:-17.984000pt;}
.ws24{word-spacing:-17.970667pt;}
.wsc{word-spacing:-17.234667pt;}
.ws1c{word-spacing:-17.173333pt;}
.ws1a{word-spacing:-16.437333pt;}
.ws1e{word-spacing:-16.008000pt;}
.ws2e{word-spacing:-15.736000pt;}
.wsd{word-spacing:-15.149333pt;}
.ws2{word-spacing:-14.986667pt;}
.ws29{word-spacing:-14.658667pt;}
.ws11{word-spacing:-14.560000pt;}
.ws2a{word-spacing:-14.045333pt;}
.ws30{word-spacing:-13.832000pt;}
.wsb{word-spacing:-13.680000pt;}
.ws22{word-spacing:-13.488000pt;}
.ws33{word-spacing:-13.173333pt;}
.ws13{word-spacing:-13.125333pt;}
.ws1d{word-spacing:-12.757333pt;}
.ws1f{word-spacing:-12.573333pt;}
.ws1b{word-spacing:-12.389333pt;}
.ws15{word-spacing:-11.856000pt;}
.ws26{word-spacing:-11.808000pt;}
.ws16{word-spacing:-10.464000pt;}
.wse{word-spacing:-10.047811pt;}
.ws5{word-spacing:-7.466667pt;}
.ws31{word-spacing:-5.600000pt;}
.ws4{word-spacing:-5.333333pt;}
.ws8{word-spacing:-3.733333pt;}
.ws10{word-spacing:-3.200000pt;}
.wsf{word-spacing:-2.133333pt;}
.ws19{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.072000pt;}
.ws6{word-spacing:0.213333pt;}
.ws21{word-spacing:0.245333pt;}
.ws17{word-spacing:0.760000pt;}
.ws18{word-spacing:0.858667pt;}
.ws20{word-spacing:1.165333pt;}
.ws2b{word-spacing:1.226667pt;}
.ws27{word-spacing:1.296000pt;}
.ws7{word-spacing:1.440000pt;}
.ws25{word-spacing:2.024000pt;}
.ws12{word-spacing:2.112000pt;}
.ws23{word-spacing:5.472000pt;}
._15{margin-left:-8.531467pt;}
._d{margin-left:-7.488000pt;}
._c{margin-left:-5.879467pt;}
._8{margin-left:-4.966667pt;}
._6{margin-left:-3.472800pt;}
._3{margin-left:-2.463200pt;}
._7{margin-left:-0.966133pt;}
._4{width:0.896000pt;}
._1{width:2.133333pt;}
._b{width:3.148800pt;}
._e{width:4.152800pt;}
._5{width:5.120000pt;}
._9{width:6.864000pt;}
._a{width:8.538667pt;}
._14{width:9.510933pt;}
._16{width:10.498667pt;}
._1f{width:11.565600pt;}
._11{width:12.603467pt;}
._10{width:13.834400pt;}
._26{width:14.897333pt;}
._19{width:15.850667pt;}
._20{width:18.357067pt;}
._1b{width:21.355200pt;}
._23{width:22.610133pt;}
._1c{width:25.085333pt;}
._21{width:26.496000pt;}
._1e{width:28.029333pt;}
._27{width:29.082667pt;}
._25{width:32.958933pt;}
._17{width:38.617920pt;}
._f{width:76.048000pt;}
._13{width:231.653333pt;}
._1a{width:405.497600pt;}
._12{width:406.526400pt;}
._28{width:408.313867pt;}
._24{width:410.548267pt;}
._0{width:514.133333pt;}
._18{width:849.961067pt;}
._1d{width:852.294400pt;}
._22{width:855.894400pt;}
._2{width:857.654400pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fsc{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y8c{bottom:91.918800pt;}
.y13f{bottom:94.426800pt;}
.yd1{bottom:94.461200pt;}
.yf5{bottom:94.469733pt;}
.y42{bottom:94.485600pt;}
.y1f{bottom:94.496533pt;}
.y15f{bottom:94.506267pt;}
.yab{bottom:97.150933pt;}
.y8b{bottom:107.254800pt;}
.yf4{bottom:109.805733pt;}
.y41{bottom:112.484267pt;}
.y13e{bottom:112.535467pt;}
.yd0{bottom:113.091200pt;}
.y15e{bottom:113.168267pt;}
.y11b{bottom:113.574400pt;}
.y1e{bottom:114.043200pt;}
.y8a{bottom:122.590800pt;}
.yf3{bottom:125.141733pt;}
.y11a{bottom:128.910400pt;}
.y64{bottom:128.918400pt;}
.y13d{bottom:130.644133pt;}
.y40{bottom:131.597067pt;}
.ycf{bottom:131.721200pt;}
.y15d{bottom:131.830267pt;}
.y1d{bottom:133.589867pt;}
.yaa{bottom:136.337867pt;}
.y89{bottom:137.926800pt;}
.yf2{bottom:140.477733pt;}
.y119{bottom:144.246400pt;}
.y63{bottom:144.254400pt;}
.y13c{bottom:148.752800pt;}
.yce{bottom:150.351200pt;}
.y1c{bottom:153.182000pt;}
.y88{bottom:153.262800pt;}
.ya9{bottom:154.339200pt;}
.yf1{bottom:155.813733pt;}
.y15c{bottom:158.052267pt;}
.y118{bottom:159.582400pt;}
.y62{bottom:159.590400pt;}
.y13b{bottom:166.861467pt;}
.y87{bottom:168.598800pt;}
.ycd{bottom:168.981200pt;}
.y19b{bottom:170.608667pt;}
.y3f{bottom:170.698000pt;}
.yf0{bottom:171.149733pt;}
.y1b{bottom:171.395333pt;}
.ya8{bottom:172.340533pt;}
.y117{bottom:174.918400pt;}
.y61{bottom:174.926400pt;}
.y15b{bottom:176.714267pt;}
.y86{bottom:183.934800pt;}
.y13a{bottom:184.970133pt;}
.yef{bottom:186.485733pt;}
.ycc{bottom:187.611200pt;}
.y19a{bottom:188.608667pt;}
.y1a{bottom:189.608667pt;}
.y3e{bottom:189.818667pt;}
.y116{bottom:190.254400pt;}
.y60{bottom:190.262400pt;}
.ya7{bottom:190.341867pt;}
.y85{bottom:199.270800pt;}
.y17b{bottom:200.895867pt;}
.y15a{bottom:202.936267pt;}
.y139{bottom:203.078800pt;}
.yee{bottom:204.484400pt;}
.y115{bottom:205.590400pt;}
.y5f{bottom:205.598400pt;}
.ycb{bottom:206.241200pt;}
.y199{bottom:206.608667pt;}
.y19{bottom:207.822000pt;}
.ya6{bottom:208.343200pt;}
.y3d{bottom:208.939333pt;}
.y84{bottom:217.269467pt;}
.y17a{bottom:218.899867pt;}
.y114{bottom:220.926400pt;}
.yed{bottom:220.926667pt;}
.y138{bottom:221.187467pt;}
.y5e{bottom:223.597067pt;}
.y198{bottom:224.608667pt;}
.yca{bottom:224.871200pt;}
.y18{bottom:226.035333pt;}
.ya5{bottom:226.344533pt;}
.y3c{bottom:228.060000pt;}
.y83{bottom:233.716933pt;}
.y113{bottom:236.262400pt;}
.yec{bottom:236.262667pt;}
.y137{bottom:239.296133pt;}
.y5d{bottom:242.710000pt;}
.yc9{bottom:243.501200pt;}
.y17{bottom:244.248667pt;}
.ya4{bottom:244.345867pt;}
.y179{bottom:244.463867pt;}
.y3b{bottom:247.167467pt;}
.y159{bottom:248.716267pt;}
.y112{bottom:251.598400pt;}
.yeb{bottom:251.598667pt;}
.y82{bottom:251.715600pt;}
.y197{bottom:253.942000pt;}
.y136{bottom:257.404800pt;}
.yc8{bottom:262.131200pt;}
.ya3{bottom:262.347200pt;}
.y16{bottom:262.462000pt;}
.y178{bottom:262.467867pt;}
.y3a{bottom:266.288133pt;}
.y158{bottom:267.378267pt;}
.y81{bottom:268.152533pt;}
.y111{bottom:269.597067pt;}
.yea{bottom:269.597333pt;}
.ya2{bottom:280.348533pt;}
.y15{bottom:280.675333pt;}
.yc7{bottom:280.761200pt;}
.y80{bottom:283.488533pt;}
.y39{bottom:285.382267pt;}
.y157{bottom:286.040267pt;}
.ye9{bottom:286.042400pt;}
.y177{bottom:288.031867pt;}
.y196{bottom:290.835333pt;}
.y135{bottom:294.404267pt;}
.ya1{bottom:298.349867pt;}
.y7f{bottom:298.824533pt;}
.y14{bottom:298.888667pt;}
.yc6{bottom:299.391200pt;}
.ye8{bottom:301.378400pt;}
.y38{bottom:304.502933pt;}
.y156{bottom:304.702267pt;}
.y195{bottom:308.168667pt;}
.y110{bottom:308.773333pt;}
.y176{bottom:313.595867pt;}
.y7e{bottom:314.160533pt;}
.ya0{bottom:316.351200pt;}
.y13{bottom:317.102000pt;}
.yc5{bottom:318.021200pt;}
.ye7{bottom:319.377067pt;}
.y155{bottom:323.364267pt;}
.y37{bottom:323.623600pt;}
.y194{bottom:325.502000pt;}
.y10f{bottom:327.050667pt;}
.y7d{bottom:329.496533pt;}
.y175{bottom:331.599867pt;}
.y9f{bottom:334.352533pt;}
.y12{bottom:335.315333pt;}
.yc4{bottom:336.651200pt;}
.y36{bottom:342.744267pt;}
.y193{bottom:342.835333pt;}
.y10e{bottom:345.328000pt;}
.y7c{bottom:347.495200pt;}
.y154{bottom:349.586267pt;}
.y174{bottom:349.603867pt;}
.y134{bottom:349.684533pt;}
.y9e{bottom:352.353867pt;}
.y11{bottom:353.528667pt;}
.yc3{bottom:355.281200pt;}
.ye6{bottom:358.509867pt;}
.y192{bottom:360.168667pt;}
.y35{bottom:361.864933pt;}
.y10d{bottom:363.605333pt;}
.y133{bottom:367.793200pt;}
.y153{bottom:368.248267pt;}
.y9d{bottom:370.355200pt;}
.y5c{bottom:370.395867pt;}
.yc2{bottom:373.911200pt;}
.y173{bottom:375.167867pt;}
.ye5{bottom:376.649200pt;}
.y191{bottom:377.502000pt;}
.y10c{bottom:381.882667pt;}
.y10{bottom:383.088667pt;}
.y132{bottom:385.901867pt;}
.y7b{bottom:386.621200pt;}
.y152{bottom:386.910267pt;}
.y9c{bottom:388.356533pt;}
.y5b{bottom:388.397200pt;}
.yc1{bottom:392.541200pt;}
.y172{bottom:393.171867pt;}
.ye4{bottom:394.794000pt;}
.y190{bottom:394.835333pt;}
.y34{bottom:399.876667pt;}
.y10b{bottom:400.160000pt;}
.y131{bottom:404.010533pt;}
.y7a{bottom:404.613200pt;}
.y151{bottom:405.572267pt;}
.y9b{bottom:406.357867pt;}
.y5a{bottom:406.398533pt;}
.yc0{bottom:411.171200pt;}
.y18f{bottom:412.168667pt;}
.ye3{bottom:412.933333pt;}
.y10a{bottom:418.437333pt;}
.y171{bottom:418.735867pt;}
.y130{bottom:422.119200pt;}
.y79{bottom:422.614533pt;}
.y150{bottom:424.234267pt;}
.y9a{bottom:424.359200pt;}
.y59{bottom:424.399867pt;}
.y18e{bottom:429.502000pt;}
.ybf{bottom:429.801200pt;}
.ye2{bottom:431.075333pt;}
.yf{bottom:435.324800pt;}
.y170{bottom:436.739867pt;}
.y109{bottom:436.854533pt;}
.y12f{bottom:440.227867pt;}
.y78{bottom:440.615867pt;}
.y99{bottom:442.360533pt;}
.y58{bottom:442.393200pt;}
.y18d{bottom:446.835333pt;}
.ybe{bottom:448.431200pt;}
.ye1{bottom:449.214667pt;}
.y14f{bottom:450.456267pt;}
.y108{bottom:455.131867pt;}
.y33{bottom:456.327867pt;}
.y12e{bottom:458.336533pt;}
.y77{bottom:458.617200pt;}
.ye{bottom:460.207467pt;}
.y98{bottom:460.361867pt;}
.y57{bottom:460.394533pt;}
.y16f{bottom:462.303867pt;}
.y18c{bottom:464.168667pt;}
.ybd{bottom:467.061200pt;}
.y14e{bottom:469.118267pt;}
.y107{bottom:473.409200pt;}
.y32{bottom:476.114533pt;}
.y12d{bottom:476.445200pt;}
.y76{bottom:476.618533pt;}
.y97{bottom:478.363200pt;}
.y56{bottom:478.395867pt;}
.y16e{bottom:480.307867pt;}
.y18b{bottom:481.502000pt;}
.yd{bottom:485.090133pt;}
.ybc{bottom:485.691200pt;}
.ye0{bottom:486.257200pt;}
.y14d{bottom:487.780267pt;}
.y106{bottom:491.686533pt;}
.y12c{bottom:494.553867pt;}
.y75{bottom:494.619867pt;}
.y31{bottom:495.901200pt;}
.y96{bottom:496.364533pt;}
.y55{bottom:496.397200pt;}
.y16d{bottom:498.311867pt;}
.y18a{bottom:498.835333pt;}
.ybb{bottom:504.321200pt;}
.y14c{bottom:506.442267pt;}
.ydf{bottom:507.731200pt;}
.y105{bottom:509.963867pt;}
.y74{bottom:512.621200pt;}
.y12b{bottom:512.662533pt;}
.y95{bottom:514.365867pt;}
.y54{bottom:514.398533pt;}
.y30{bottom:515.598000pt;}
.y189{bottom:516.168667pt;}
.yba{bottom:522.951200pt;}
.y16c{bottom:523.875867pt;}
.y14b{bottom:525.104267pt;}
.y104{bottom:528.241200pt;}
.yc{bottom:528.884267pt;}
.yde{bottom:529.205200pt;}
.y73{bottom:530.621200pt;}
.y12a{bottom:530.771200pt;}
.y94{bottom:532.367200pt;}
.y53{bottom:532.399867pt;}
.y188{bottom:533.502000pt;}
.y2f{bottom:534.051333pt;}
.yb9{bottom:541.581200pt;}
.y16b{bottom:541.879867pt;}
.y14a{bottom:543.766267pt;}
.y103{bottom:546.518533pt;}
.y72{bottom:548.621200pt;}
.y129{bottom:548.879867pt;}
.y93{bottom:550.368533pt;}
.y52{bottom:550.382533pt;}
.y187{bottom:550.835333pt;}
.y2e{bottom:552.504667pt;}
.yb{bottom:557.756267pt;}
.yb8{bottom:560.211200pt;}
.y149{bottom:562.428267pt;}
.y102{bottom:564.795867pt;}
.y71{bottom:566.610533pt;}
.y128{bottom:566.988533pt;}
.y16a{bottom:567.443867pt;}
.y186{bottom:568.168667pt;}
.y92{bottom:568.369867pt;}
.y51{bottom:568.383867pt;}
.y2d{bottom:570.958000pt;}
.yb7{bottom:578.841200pt;}
.y101{bottom:583.073200pt;}
.y70{bottom:584.611867pt;}
.ydd{bottom:584.699067pt;}
.y127{bottom:585.097200pt;}
.y169{bottom:585.447867pt;}
.y185{bottom:585.502000pt;}
.y91{bottom:586.371200pt;}
.y50{bottom:586.385200pt;}
.ya{bottom:586.652267pt;}
.y148{bottom:588.650267pt;}
.y2c{bottom:589.411333pt;}
.yb6{bottom:597.471200pt;}
.y100{bottom:601.350533pt;}
.y6f{bottom:602.613200pt;}
.y184{bottom:602.835333pt;}
.ydc{bottom:602.868533pt;}
.y126{bottom:603.205867pt;}
.y90{bottom:604.372533pt;}
.y4f{bottom:604.386533pt;}
.y2b{bottom:607.864667pt;}
.y168{bottom:611.011867pt;}
.y9{bottom:615.524267pt;}
.yb5{bottom:616.101200pt;}
.yff{bottom:619.627867pt;}
.y183{bottom:620.168667pt;}
.y6e{bottom:620.614533pt;}
.ydb{bottom:621.007867pt;}
.y125{bottom:621.314533pt;}
.y8f{bottom:622.373867pt;}
.y4e{bottom:622.387867pt;}
.y2a{bottom:626.318000pt;}
.y167{bottom:629.015867pt;}
.yb4{bottom:634.731200pt;}
.y182{bottom:637.502000pt;}
.yfe{bottom:637.905200pt;}
.y6d{bottom:638.615867pt;}
.yda{bottom:639.147200pt;}
.y124{bottom:639.423200pt;}
.y8e{bottom:640.375200pt;}
.y4d{bottom:640.389200pt;}
.y29{bottom:644.771333pt;}
.y147{bottom:653.115867pt;}
.yb3{bottom:653.361200pt;}
.y166{bottom:654.579867pt;}
.y181{bottom:654.835333pt;}
.yfd{bottom:656.182533pt;}
.y6c{bottom:656.617200pt;}
.yd9{bottom:657.286533pt;}
.y123{bottom:657.531867pt;}
.y8d{bottom:658.376533pt;}
.y4c{bottom:658.390533pt;}
.y28{bottom:663.224667pt;}
.y8{bottom:670.883867pt;}
.y146{bottom:671.776533pt;}
.yb2{bottom:671.991200pt;}
.y180{bottom:672.168667pt;}
.yfc{bottom:674.459867pt;}
.y6b{bottom:674.618533pt;}
.yd8{bottom:675.425867pt;}
.y122{bottom:675.640533pt;}
.y4b{bottom:676.391867pt;}
.y165{bottom:680.143867pt;}
.y27{bottom:681.678000pt;}
.y145{bottom:690.437200pt;}
.yb1{bottom:690.621200pt;}
.y6a{bottom:692.619867pt;}
.yfb{bottom:692.737200pt;}
.yd7{bottom:693.565200pt;}
.y121{bottom:693.749200pt;}
.y4a{bottom:694.393200pt;}
.y7{bottom:697.990533pt;}
.y26{bottom:700.131333pt;}
.y17f{bottom:700.835333pt;}
.y164{bottom:705.707867pt;}
.y144{bottom:709.097867pt;}
.yb0{bottom:709.251200pt;}
.y69{bottom:710.621200pt;}
.yfa{bottom:711.014533pt;}
.yd6{bottom:711.704533pt;}
.y120{bottom:711.857867pt;}
.y49{bottom:712.394533pt;}
.y6{bottom:717.537200pt;}
.y25{bottom:718.584667pt;}
.y163{bottom:723.711867pt;}
.y143{bottom:727.758533pt;}
.yaf{bottom:727.881200pt;}
.y68{bottom:728.622533pt;}
.yf9{bottom:729.291867pt;}
.yd5{bottom:729.843867pt;}
.y11f{bottom:729.966533pt;}
.y48{bottom:730.395867pt;}
.y24{bottom:737.038000pt;}
.y5{bottom:737.083867pt;}
.y162{bottom:741.715867pt;}
.y142{bottom:746.419200pt;}
.yae{bottom:746.511200pt;}
.yf8{bottom:747.569200pt;}
.yd4{bottom:747.983200pt;}
.y11e{bottom:748.075200pt;}
.y47{bottom:748.397200pt;}
.y17e{bottom:752.173733pt;}
.y23{bottom:755.491333pt;}
.y67{bottom:757.967733pt;}
.y4{bottom:764.190533pt;}
.y141{bottom:765.079867pt;}
.yad{bottom:765.141200pt;}
.yf7{bottom:765.846533pt;}
.yd3{bottom:766.122533pt;}
.y11d{bottom:766.183867pt;}
.y46{bottom:766.398533pt;}
.y161{bottom:767.279867pt;}
.y22{bottom:773.944667pt;}
.y17d{bottom:776.179067pt;}
.y66{bottom:779.297733pt;}
.y3{bottom:783.737200pt;}
.y140{bottom:783.740533pt;}
.yac{bottom:783.771200pt;}
.yf6{bottom:784.123867pt;}
.yd2{bottom:784.261867pt;}
.y11c{bottom:784.292533pt;}
.y45{bottom:784.399867pt;}
.y160{bottom:785.283867pt;}
.y17c{bottom:800.184400pt;}
.y65{bottom:800.627733pt;}
.y44{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.731333pt;}
.y20{bottom:842.834667pt;}
.y43{bottom:858.834667pt;}
.he{height:30.107146pt;}
.hd{height:30.857146pt;}
.h8{height:36.229167pt;}
.hf{height:40.757812pt;}
.h12{height:41.507812pt;}
.h4{height:45.286458pt;}
.h7{height:46.119792pt;}
.h3{height:47.550781pt;}
.h16{height:48.425781pt;}
.hb{height:52.079427pt;}
.h14{height:52.084760pt;}
.h11{height:52.111427pt;}
.h13{height:52.127427pt;}
.h10{height:52.154094pt;}
.hc{height:52.185560pt;}
.ha{height:53.037760pt;}
.h15{height:54.131083pt;}
.h2{height:56.608073pt;}
.h9{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:73.079333pt;}
.x6{left:74.573867pt;}
.x1{left:75.590533pt;}
.x9{left:76.752800pt;}
.x4{left:93.027200pt;}
.x7{left:93.940933pt;}
.xe{left:94.836267pt;}
.xb{left:102.068133pt;}
.x10{left:104.260000pt;}
.xf{left:105.180000pt;}
.xa{left:106.300133pt;}
.xd{left:131.364800pt;}
.xc{left:132.458800pt;}
.x8{left:189.034533pt;}
.x3{left:206.127467pt;}
.x2{left:207.480400pt;}
}




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