
    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_a21101bf4dcbc4e875eeacba.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.175000;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_e1e32716a02ddb949f742799.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_e6af0f920f6580efc78c6263.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_9d82940feb7ac3764cc56048.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922363;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_538cb53d4c537c167ee5522c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_986015ce4e4cf73e1b0c8e48.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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_807beed0720d46ad3562edce.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_7e0a9bb1d21d653988949b63.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d23b9f6ef4cabea981b479dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_7e0a9bb1d21d653988949b63.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_807beed0720d46ad3562edce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7e0a9bb1d21d653988949b63.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.007000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2eeaf23f67b37b5faf28b0f4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.922363;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0b37bd5dc408a16b9b720774.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.778000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_a6b33cb74c3ae816b33ad55b.woff2')format("woff");}.fff{font-family:fff;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3977bde96242b14ba832b8ff.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.172000;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.600000px;}
.ls1{letter-spacing:-0.450000px;}
.ls2{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2c{word-spacing:-30.960000px;}
.ws0{word-spacing:-13.200000px;}
.ws31{word-spacing:-12.600000px;}
.ws20{word-spacing:-11.880000px;}
.wsd{word-spacing:-2.100000px;}
.ws1a{word-spacing:-1.920000px;}
.ws10{word-spacing:-1.800000px;}
.ws1d{word-spacing:-1.560000px;}
.ws2e{word-spacing:-1.080000px;}
.ws37{word-spacing:-0.960000px;}
.ws34{word-spacing:-0.720000px;}
.ws41{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.480000px;}
.ws1b{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.120000px;}
.ws1{word-spacing:0.000000px;}
.ws3b{word-spacing:0.060000px;}
.ws29{word-spacing:0.300000px;}
.ws32{word-spacing:0.420000px;}
.ws2b{word-spacing:0.480000px;}
.ws18{word-spacing:0.840000px;}
.ws2d{word-spacing:0.900000px;}
.ws15{word-spacing:1.020000px;}
.ws35{word-spacing:1.200000px;}
.ws13{word-spacing:1.560000px;}
.ws43{word-spacing:1.620000px;}
.ws5{word-spacing:1.740000px;}
.ws8{word-spacing:1.860000px;}
.wsa{word-spacing:2.100000px;}
.ws40{word-spacing:2.220000px;}
.ws3d{word-spacing:2.580000px;}
.ws1e{word-spacing:2.700000px;}
.ws1c{word-spacing:2.880000px;}
.wsf{word-spacing:3.060000px;}
.ws33{word-spacing:3.120000px;}
.ws2f{word-spacing:3.240000px;}
.ws4{word-spacing:3.360000px;}
.ws9{word-spacing:3.420000px;}
.ws1f{word-spacing:3.480000px;}
.ws16{word-spacing:3.540000px;}
.ws14{word-spacing:3.660000px;}
.ws2{word-spacing:4.020000px;}
.wse{word-spacing:4.200000px;}
.ws2a{word-spacing:4.260000px;}
.ws3c{word-spacing:4.320000px;}
.ws28{word-spacing:4.440000px;}
.ws17{word-spacing:4.500000px;}
.ws12{word-spacing:4.800000px;}
.ws11{word-spacing:4.920000px;}
.ws6{word-spacing:6.060000px;}
.wsc{word-spacing:6.180000px;}
.ws42{word-spacing:6.420000px;}
.ws3e{word-spacing:6.480000px;}
.ws3{word-spacing:6.960000px;}
.ws30{word-spacing:7.080000px;}
.ws38{word-spacing:7.680000px;}
.ws39{word-spacing:8.640000px;}
.ws3f{word-spacing:8.700000px;}
.ws7{word-spacing:8.880000px;}
.ws3a{word-spacing:9.600000px;}
.ws36{word-spacing:13.560000px;}
.ws22{word-spacing:131.262600px;}
.ws24{word-spacing:188.605200px;}
.ws26{word-spacing:209.666400px;}
.ws25{word-spacing:212.725800px;}
.ws23{word-spacing:218.080200px;}
.ws27{word-spacing:224.830200px;}
._2{margin-left:-6.721800px;}
._1{margin-left:-4.620000px;}
._3{margin-left:-3.360000px;}
._f{margin-left:-2.358000px;}
._0{margin-left:-1.260000px;}
._6{width:1.392000px;}
._7{width:2.460000px;}
._9{width:3.534000px;}
._5{width:5.418000px;}
._4{width:6.420000px;}
._8{width:7.440000px;}
._a{width:8.717800px;}
._11{width:10.308000px;}
._10{width:11.340000px;}
._c{width:14.682000px;}
._b{width:15.720000px;}
._2f{width:20.004000px;}
._2e{width:21.348000px;}
._2d{width:22.494000px;}
._30{width:30.906000px;}
._31{width:32.172000px;}
._12{width:33.300000px;}
._13{width:36.300000px;}
._d{width:37.998000px;}
._e{width:39.318000px;}
._24{width:214.660800px;}
._2b{width:216.213000px;}
._1b{width:221.816400px;}
._1d{width:224.538000px;}
._16{width:236.980200px;}
._19{width:244.135800px;}
._18{width:257.552400px;}
._1a{width:524.360400px;}
._1c{width:725.578200px;}
._25{width:774.565200px;}
._17{width:816.910200px;}
._26{width:828.043200px;}
._23{width:952.135200px;}
._2c{width:1046.950200px;}
._14{width:1052.768400px;}
._28{width:1092.085200px;}
._2a{width:1095.370200px;}
._29{width:1105.495200px;}
._27{width:1113.370200px;}
._1e{width:1160.170200px;}
._15{width:1164.400200px;}
._20{width:1205.530200px;}
._21{width:1254.152400px;}
._1f{width:1256.331000px;}
._22{width:1281.130200px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs0{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fs2{font-size:84.000000px;}
.fs7{font-size:90.000000px;}
.fs6{font-size:102.000000px;}
.fs5{font-size:120.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:37.006500px;}
.y3{bottom:37.337250px;}
.y23{bottom:49.006500px;}
.y2{bottom:49.337250px;}
.y1{bottom:61.337250px;}
.y5d{bottom:89.680200px;}
.yab{bottom:89.824650px;}
.y8f{bottom:93.675000px;}
.y122{bottom:94.156650px;}
.y157{bottom:95.789250px;}
.y145{bottom:96.675000px;}
.y177{bottom:100.159350px;}
.y12f{bottom:100.702650px;}
.y70{bottom:101.718450px;}
.y5c{bottom:107.680200px;}
.ya7{bottom:107.824650px;}
.y8e{bottom:111.675000px;}
.y121{bottom:112.156650px;}
.y156{bottom:113.789250px;}
.y144{bottom:114.675000px;}
.y176{bottom:118.159350px;}
.y12e{bottom:118.702650px;}
.y6f{bottom:119.718450px;}
.y5b{bottom:125.680200px;}
.ya6{bottom:125.824650px;}
.y8d{bottom:129.675000px;}
.y120{bottom:130.156650px;}
.y143{bottom:132.675000px;}
.y102{bottom:133.594500px;}
.y20{bottom:134.260500px;}
.y175{bottom:136.159350px;}
.y12d{bottom:136.702650px;}
.y6e{bottom:137.718450px;}
.yd0{bottom:140.458950px;}
.y5a{bottom:143.680200px;}
.ya5{bottom:143.824650px;}
.y155{bottom:144.545100px;}
.y8c{bottom:147.675000px;}
.y142{bottom:150.675000px;}
.y101{bottom:151.594500px;}
.y1f{bottom:152.260500px;}
.y174{bottom:154.159350px;}
.y12c{bottom:154.702650px;}
.y6d{bottom:155.718450px;}
.ycf{bottom:158.458950px;}
.y59{bottom:161.680200px;}
.ya4{bottom:161.824650px;}
.y154{bottom:162.545100px;}
.y11f{bottom:163.038450px;}
.y8b{bottom:165.675000px;}
.y18b{bottom:166.915200px;}
.y141{bottom:168.675000px;}
.y100{bottom:169.594500px;}
.y1e{bottom:170.260500px;}
.y12b{bottom:172.702650px;}
.y6c{bottom:173.718450px;}
.yce{bottom:176.458950px;}
.y58{bottom:179.680200px;}
.ya3{bottom:179.824650px;}
.y153{bottom:180.545100px;}
.y8a{bottom:183.675000px;}
.y173{bottom:184.915200px;}
.y140{bottom:186.675000px;}
.yff{bottom:187.594500px;}
.y1d{bottom:188.260500px;}
.y11e{bottom:188.538450px;}
.y12a{bottom:190.702650px;}
.y6b{bottom:191.718450px;}
.ycd{bottom:194.458950px;}
.y57{bottom:197.680200px;}
.ya2{bottom:197.824650px;}
.y89{bottom:201.675000px;}
.y172{bottom:202.915200px;}
.y13f{bottom:204.675000px;}
.yfe{bottom:205.594500px;}
.y1c{bottom:206.260500px;}
.y129{bottom:208.702650px;}
.y6a{bottom:209.718450px;}
.y152{bottom:211.301100px;}
.ycc{bottom:212.458950px;}
.y18a{bottom:215.671200px;}
.y56{bottom:215.680200px;}
.ya1{bottom:215.824650px;}
.y88{bottom:219.675000px;}
.y171{bottom:220.915200px;}
.y13e{bottom:222.675000px;}
.yfd{bottom:223.594500px;}
.y1b{bottom:224.260500px;}
.y128{bottom:226.702650px;}
.y69{bottom:227.718450px;}
.y151{bottom:229.301100px;}
.ycb{bottom:230.458950px;}
.y189{bottom:233.671200px;}
.y55{bottom:233.680200px;}
.ya0{bottom:233.824650px;}
.yd9{bottom:235.254450px;}
.y87{bottom:237.675000px;}
.y11d{bottom:239.550300px;}
.y13d{bottom:240.675000px;}
.yfc{bottom:241.594500px;}
.y1a{bottom:242.260500px;}
.y127{bottom:244.702650px;}
.y68{bottom:245.718450px;}
.y150{bottom:247.301100px;}
.yca{bottom:248.458950px;}
.y170{bottom:251.671200px;}
.y54{bottom:251.680200px;}
.y9f{bottom:251.824650px;}
.yd8{bottom:253.254450px;}
.y86{bottom:255.675000px;}
.y11c{bottom:257.550300px;}
.y13c{bottom:258.675000px;}
.yfb{bottom:259.594500px;}
.y19{bottom:260.260500px;}
.y126{bottom:262.702650px;}
.y67{bottom:263.718450px;}
.yc9{bottom:266.458950px;}
.y16f{bottom:269.671200px;}
.y53{bottom:269.680200px;}
.y9e{bottom:269.824650px;}
.y130{bottom:271.206600px;}
.yd7{bottom:271.254450px;}
.y85{bottom:273.675000px;}
.y11b{bottom:275.550300px;}
.y13b{bottom:276.675000px;}
.yfa{bottom:277.594500px;}
.y14f{bottom:278.056950px;}
.y18{bottom:278.260500px;}
.y125{bottom:280.702650px;}
.y66{bottom:281.718450px;}
.y188{bottom:282.427050px;}
.yc8{bottom:284.458950px;}
.y16e{bottom:287.671200px;}
.y52{bottom:287.680200px;}
.y9d{bottom:287.824650px;}
.yd6{bottom:289.254450px;}
.y84{bottom:291.675000px;}
.y11a{bottom:293.550300px;}
.y13a{bottom:294.675000px;}
.yf9{bottom:295.594500px;}
.y14e{bottom:296.056950px;}
.y17{bottom:296.260500px;}
.y124{bottom:298.702650px;}
.y65{bottom:299.718450px;}
.y187{bottom:300.427050px;}
.yc7{bottom:302.458950px;}
.yaa{bottom:302.706600px;}
.y16d{bottom:305.671200px;}
.y51{bottom:305.680200px;}
.y9c{bottom:305.824650px;}
.yd5{bottom:307.254450px;}
.y83{bottom:309.675000px;}
.y119{bottom:311.550300px;}
.y139{bottom:312.675000px;}
.y14d{bottom:314.056950px;}
.y16{bottom:314.260500px;}
.y64{bottom:317.718450px;}
.y186{bottom:318.427050px;}
.yc6{bottom:320.458950px;}
.y50{bottom:323.680200px;}
.y9b{bottom:323.824650px;}
.y123{bottom:325.206600px;}
.yd4{bottom:325.254450px;}
.y82{bottom:327.675000px;}
.yf8{bottom:328.476450px;}
.y118{bottom:329.550300px;}
.y138{bottom:330.675000px;}
.y15{bottom:332.260500px;}
.y90{bottom:335.718450px;}
.y16c{bottom:336.427050px;}
.yc5{bottom:338.458950px;}
.y4f{bottom:341.680200px;}
.y9a{bottom:341.824650px;}
.yd3{bottom:343.254450px;}
.y14c{bottom:344.812800px;}
.y81{bottom:345.675000px;}
.y117{bottom:347.550300px;}
.y137{bottom:348.675000px;}
.y14{bottom:350.260500px;}
.y63{bottom:353.718450px;}
.y16b{bottom:354.427050px;}
.yc4{bottom:356.458950px;}
.y4e{bottom:359.680200px;}
.y99{bottom:359.824650px;}
.y14b{bottom:362.812800px;}
.y80{bottom:363.675000px;}
.y116{bottom:365.550300px;}
.y136{bottom:366.675000px;}
.y185{bottom:367.182900px;}
.y13{bottom:368.260500px;}
.y62{bottom:371.718450px;}
.y16a{bottom:372.427050px;}
.yc3{bottom:374.458950px;}
.y4d{bottom:377.680200px;}
.y98{bottom:377.824650px;}
.y14a{bottom:380.812800px;}
.y7f{bottom:381.675000px;}
.y115{bottom:383.550300px;}
.y135{bottom:384.675000px;}
.y184{bottom:385.182900px;}
.y12{bottom:386.260500px;}
.yd2{bottom:386.766300px;}
.y61{bottom:389.718450px;}
.yc2{bottom:392.458950px;}
.y97{bottom:395.824650px;}
.y7e{bottom:399.675000px;}
.y114{bottom:401.550300px;}
.y134{bottom:402.675000px;}
.y169{bottom:403.182900px;}
.y11{bottom:404.260650px;}
.yf7{bottom:405.000150px;}
.y60{bottom:407.718450px;}
.yc1{bottom:410.458950px;}
.y149{bottom:411.568800px;}
.y4c{bottom:413.680200px;}
.y96{bottom:413.824650px;}
.y7d{bottom:417.675000px;}
.y113{bottom:419.550300px;}
.y168{bottom:421.182900px;}
.yf6{bottom:421.500150px;}
.y10{bottom:422.260650px;}
.y5f{bottom:425.718450px;}
.yc0{bottom:428.458950px;}
.y148{bottom:429.568800px;}
.y4b{bottom:431.680200px;}
.y95{bottom:431.824650px;}
.y133{bottom:435.556950px;}
.y7c{bottom:435.675000px;}
.y112{bottom:437.550300px;}
.y167{bottom:439.182900px;}
.yf{bottom:440.260650px;}
.yf5{bottom:443.449500px;}
.y39{bottom:443.718450px;}
.ybf{bottom:446.458950px;}
.y147{bottom:447.568800px;}
.y4a{bottom:449.680200px;}
.y94{bottom:449.824650px;}
.y183{bottom:451.938900px;}
.y7b{bottom:453.675150px;}
.y111{bottom:455.550300px;}
.y166{bottom:457.182900px;}
.ye{bottom:458.260650px;}
.y21{bottom:459.430500px;}
.yf4{bottom:459.862950px;}
.y38{bottom:461.718450px;}
.ybe{bottom:464.458950px;}
.y49{bottom:467.680200px;}
.y93{bottom:467.824650px;}
.y182{bottom:469.938900px;}
.y7a{bottom:471.675150px;}
.y110{bottom:473.550300px;}
.yd{bottom:476.260650px;}
.yf3{bottom:476.276250px;}
.y37{bottom:479.718450px;}
.y146{bottom:480.450600px;}
.ybd{bottom:482.458950px;}
.yef{bottom:484.482900px;}
.y48{bottom:485.680200px;}
.y92{bottom:485.824650px;}
.y165{bottom:487.938900px;}
.y79{bottom:489.675150px;}
.y10f{bottom:491.550300px;}
.yf2{bottom:492.689700px;}
.yc{bottom:494.260650px;}
.y36{bottom:497.718450px;}
.ybc{bottom:500.458950px;}
.y132{bottom:501.450600px;}
.y47{bottom:503.680200px;}
.y164{bottom:505.938900px;}
.y78{bottom:507.675150px;}
.yf1{bottom:509.103000px;}
.y10e{bottom:509.550300px;}
.yb{bottom:512.260650px;}
.y35{bottom:515.718450px;}
.ybb{bottom:518.458950px;}
.y181{bottom:518.694750px;}
.y91{bottom:518.706600px;}
.y46{bottom:521.680200px;}
.ya9{bottom:522.556950px;}
.y163{bottom:523.938900px;}
.yf0{bottom:525.516450px;}
.y77{bottom:525.675150px;}
.y10d{bottom:527.550300px;}
.ya{bottom:530.260650px;}
.y34{bottom:533.718450px;}
.y131{bottom:534.450600px;}
.yba{bottom:536.458950px;}
.y180{bottom:536.694750px;}
.y45{bottom:539.680200px;}
.yee{bottom:541.929900px;}
.y162{bottom:541.938900px;}
.y76{bottom:543.675150px;}
.y10c{bottom:545.550300px;}
.y9{bottom:548.260650px;}
.y33{bottom:551.718450px;}
.yb9{bottom:554.458950px;}
.y17f{bottom:554.694750px;}
.y44{bottom:557.680200px;}
.yed{bottom:558.343350px;}
.yea{bottom:560.175000px;}
.y75{bottom:561.675150px;}
.y10b{bottom:563.550300px;}
.y8{bottom:566.260650px;}
.y32{bottom:569.718450px;}
.yb8{bottom:572.458950px;}
.y161{bottom:572.694750px;}
.ye9{bottom:572.925000px;}
.yec{bottom:574.756650px;}
.y43{bottom:575.680200px;}
.y74{bottom:579.675150px;}
.y10a{bottom:581.550300px;}
.y17e{bottom:585.450600px;}
.y31{bottom:587.718450px;}
.ya8{bottom:588.450600px;}
.yb7{bottom:590.458950px;}
.y160{bottom:590.694750px;}
.yeb{bottom:591.170100px;}
.y42{bottom:593.680200px;}
.y73{bottom:597.675150px;}
.y109{bottom:599.550300px;}
.y17d{bottom:603.450600px;}
.y7{bottom:605.272350px;}
.y30{bottom:605.718450px;}
.ye8{bottom:607.583550px;}
.yb6{bottom:608.458950px;}
.y15f{bottom:608.694750px;}
.y41{bottom:611.680200px;}
.y108{bottom:617.550300px;}
.y17c{bottom:621.450600px;}
.y2f{bottom:623.718450px;}
.ye7{bottom:623.997000px;}
.yb5{bottom:626.458950px;}
.y40{bottom:629.680200px;}
.y72{bottom:630.556950px;}
.ye4{bottom:632.203650px;}
.y107{bottom:635.550300px;}
.y15e{bottom:639.450600px;}
.ye6{bottom:640.410300px;}
.y2e{bottom:641.718450px;}
.yb4{bottom:644.458950px;}
.y3f{bottom:647.680200px;}
.y17b{bottom:652.206600px;}
.y106{bottom:653.550300px;}
.ye5{bottom:656.823750px;}
.y15d{bottom:657.450600px;}
.y2d{bottom:659.718450px;}
.yb3{bottom:662.458950px;}
.y6{bottom:663.536250px;}
.y3e{bottom:665.680200px;}
.y17a{bottom:670.206600px;}
.y105{bottom:671.550300px;}
.ye3{bottom:673.237200px;}
.y15c{bottom:675.450600px;}
.y2c{bottom:677.718450px;}
.yb2{bottom:680.458950px;}
.y3d{bottom:683.680200px;}
.ye2{bottom:689.650500px;}
.y2b{bottom:695.718450px;}
.y71{bottom:696.450600px;}
.yb1{bottom:698.458950px;}
.y179{bottom:700.962450px;}
.y104{bottom:704.432250px;}
.y5{bottom:705.536250px;}
.ye1{bottom:706.063950px;}
.y15b{bottom:706.206600px;}
.y2a{bottom:713.718450px;}
.ydc{bottom:716.102400px;}
.yb0{bottom:716.458950px;}
.y178{bottom:718.962450px;}
.ye0{bottom:722.477400px;}
.ydb{bottom:728.852400px;}
.y3c{bottom:731.443950px;}
.y29{bottom:731.718450px;}
.yaf{bottom:734.458950px;}
.y15a{bottom:736.962450px;}
.ydf{bottom:738.890700px;}
.y4{bottom:747.536250px;}
.y28{bottom:749.718450px;}
.yae{bottom:752.458950px;}
.y159{bottom:754.962450px;}
.yde{bottom:755.304150px;}
.y3b{bottom:759.943950px;}
.y5e{bottom:767.718450px;}
.y103{bottom:770.325900px;}
.ydd{bottom:771.717600px;}
.y158{bottom:772.962450px;}
.yad{bottom:785.340900px;}
.y27{bottom:785.718450px;}
.yda{bottom:787.755300px;}
.y3a{bottom:803.325900px;}
.y26{bottom:803.718450px;}
.yac{bottom:810.840900px;}
.yd1{bottom:816.852900px;}
.y25{bottom:821.718450px;}
.y22{bottom:875.692950px;}
.h9{height:32.340000px;}
.h11{height:37.008000px;}
.h2{height:39.018000px;}
.h12{height:41.715000px;}
.h6{height:42.246094px;}
.hd{height:42.451172px;}
.h5{height:43.212891px;}
.h8{height:44.688000px;}
.hf{height:46.986328px;}
.h10{height:50.886000px;}
.h7{height:52.207031px;}
.he{height:61.314000px;}
.h4{height:64.764000px;}
.hc{height:69.390000px;}
.hb{height:78.642000px;}
.ha{height:92.520000px;}
.h3{height:120.276000px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:14.569350px;}
.x6{left:15.646500px;}
.x1{left:93.543300px;}
.xf{left:102.018300px;}
.x5{left:108.425250px;}
.xc{left:131.811000px;}
.xe{left:177.328350px;}
.x9{left:332.342400px;}
.x4{left:404.899650px;}
.x3{left:453.093000px;}
.x2{left:465.934500px;}
.x7{left:510.160500px;}
.xd{left:673.470900px;}
.x8{left:674.671200px;}
.xb{left:675.691650px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.533333pt;}
.ls1{letter-spacing:-0.400000pt;}
.ls2{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2c{word-spacing:-27.520000pt;}
.ws0{word-spacing:-11.733333pt;}
.ws31{word-spacing:-11.200000pt;}
.ws20{word-spacing:-10.560000pt;}
.wsd{word-spacing:-1.866667pt;}
.ws1a{word-spacing:-1.706667pt;}
.ws10{word-spacing:-1.600000pt;}
.ws1d{word-spacing:-1.386667pt;}
.ws2e{word-spacing:-0.960000pt;}
.ws37{word-spacing:-0.853333pt;}
.ws34{word-spacing:-0.640000pt;}
.ws41{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.426667pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.106667pt;}
.ws1{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.053333pt;}
.ws29{word-spacing:0.266667pt;}
.ws32{word-spacing:0.373333pt;}
.ws2b{word-spacing:0.426667pt;}
.ws18{word-spacing:0.746667pt;}
.ws2d{word-spacing:0.800000pt;}
.ws15{word-spacing:0.906667pt;}
.ws35{word-spacing:1.066667pt;}
.ws13{word-spacing:1.386667pt;}
.ws43{word-spacing:1.440000pt;}
.ws5{word-spacing:1.546667pt;}
.ws8{word-spacing:1.653333pt;}
.wsa{word-spacing:1.866667pt;}
.ws40{word-spacing:1.973333pt;}
.ws3d{word-spacing:2.293333pt;}
.ws1e{word-spacing:2.400000pt;}
.ws1c{word-spacing:2.560000pt;}
.wsf{word-spacing:2.720000pt;}
.ws33{word-spacing:2.773333pt;}
.ws2f{word-spacing:2.880000pt;}
.ws4{word-spacing:2.986667pt;}
.ws9{word-spacing:3.040000pt;}
.ws1f{word-spacing:3.093333pt;}
.ws16{word-spacing:3.146667pt;}
.ws14{word-spacing:3.253333pt;}
.ws2{word-spacing:3.573333pt;}
.wse{word-spacing:3.733333pt;}
.ws2a{word-spacing:3.786667pt;}
.ws3c{word-spacing:3.840000pt;}
.ws28{word-spacing:3.946667pt;}
.ws17{word-spacing:4.000000pt;}
.ws12{word-spacing:4.266667pt;}
.ws11{word-spacing:4.373333pt;}
.ws6{word-spacing:5.386667pt;}
.wsc{word-spacing:5.493333pt;}
.ws42{word-spacing:5.706667pt;}
.ws3e{word-spacing:5.760000pt;}
.ws3{word-spacing:6.186667pt;}
.ws30{word-spacing:6.293333pt;}
.ws38{word-spacing:6.826667pt;}
.ws39{word-spacing:7.680000pt;}
.ws3f{word-spacing:7.733333pt;}
.ws7{word-spacing:7.893333pt;}
.ws3a{word-spacing:8.533333pt;}
.ws36{word-spacing:12.053333pt;}
.ws22{word-spacing:116.677867pt;}
.ws24{word-spacing:167.649067pt;}
.ws26{word-spacing:186.370133pt;}
.ws25{word-spacing:189.089600pt;}
.ws23{word-spacing:193.849067pt;}
.ws27{word-spacing:199.849067pt;}
._2{margin-left:-5.974933pt;}
._1{margin-left:-4.106667pt;}
._3{margin-left:-2.986667pt;}
._f{margin-left:-2.096000pt;}
._0{margin-left:-1.120000pt;}
._6{width:1.237333pt;}
._7{width:2.186667pt;}
._9{width:3.141333pt;}
._5{width:4.816000pt;}
._4{width:5.706667pt;}
._8{width:6.613333pt;}
._a{width:7.749156pt;}
._11{width:9.162667pt;}
._10{width:10.080000pt;}
._c{width:13.050667pt;}
._b{width:13.973333pt;}
._2f{width:17.781333pt;}
._2e{width:18.976000pt;}
._2d{width:19.994667pt;}
._30{width:27.472000pt;}
._31{width:28.597333pt;}
._12{width:29.600000pt;}
._13{width:32.266667pt;}
._d{width:33.776000pt;}
._e{width:34.949333pt;}
._24{width:190.809600pt;}
._2b{width:192.189333pt;}
._1b{width:197.170133pt;}
._1d{width:199.589333pt;}
._16{width:210.649067pt;}
._19{width:217.009600pt;}
._18{width:228.935467pt;}
._1a{width:466.098133pt;}
._1c{width:644.958400pt;}
._25{width:688.502400pt;}
._17{width:726.142400pt;}
._26{width:736.038400pt;}
._23{width:846.342400pt;}
._2c{width:930.622400pt;}
._14{width:935.794133pt;}
._28{width:970.742400pt;}
._2a{width:973.662400pt;}
._29{width:982.662400pt;}
._27{width:989.662400pt;}
._1e{width:1031.262400pt;}
._15{width:1035.022400pt;}
._20{width:1071.582400pt;}
._21{width:1114.802133pt;}
._1f{width:1116.738667pt;}
._22{width:1138.782400pt;}
.fs0{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fs2{font-size:74.666667pt;}
.fs7{font-size:80.000000pt;}
.fs6{font-size:90.666667pt;}
.fs5{font-size:106.666667pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:32.894667pt;}
.y3{bottom:33.188667pt;}
.y23{bottom:43.561333pt;}
.y2{bottom:43.855333pt;}
.y1{bottom:54.522000pt;}
.y5d{bottom:79.715733pt;}
.yab{bottom:79.844133pt;}
.y8f{bottom:83.266667pt;}
.y122{bottom:83.694800pt;}
.y157{bottom:85.146000pt;}
.y145{bottom:85.933333pt;}
.y177{bottom:89.030533pt;}
.y12f{bottom:89.513467pt;}
.y70{bottom:90.416400pt;}
.y5c{bottom:95.715733pt;}
.ya7{bottom:95.844133pt;}
.y8e{bottom:99.266667pt;}
.y121{bottom:99.694800pt;}
.y156{bottom:101.146000pt;}
.y144{bottom:101.933333pt;}
.y176{bottom:105.030533pt;}
.y12e{bottom:105.513467pt;}
.y6f{bottom:106.416400pt;}
.y5b{bottom:111.715733pt;}
.ya6{bottom:111.844133pt;}
.y8d{bottom:115.266667pt;}
.y120{bottom:115.694800pt;}
.y143{bottom:117.933333pt;}
.y102{bottom:118.750667pt;}
.y20{bottom:119.342667pt;}
.y175{bottom:121.030533pt;}
.y12d{bottom:121.513467pt;}
.y6e{bottom:122.416400pt;}
.yd0{bottom:124.852400pt;}
.y5a{bottom:127.715733pt;}
.ya5{bottom:127.844133pt;}
.y155{bottom:128.484533pt;}
.y8c{bottom:131.266667pt;}
.y142{bottom:133.933333pt;}
.y101{bottom:134.750667pt;}
.y1f{bottom:135.342667pt;}
.y174{bottom:137.030533pt;}
.y12c{bottom:137.513467pt;}
.y6d{bottom:138.416400pt;}
.ycf{bottom:140.852400pt;}
.y59{bottom:143.715733pt;}
.ya4{bottom:143.844133pt;}
.y154{bottom:144.484533pt;}
.y11f{bottom:144.923067pt;}
.y8b{bottom:147.266667pt;}
.y18b{bottom:148.369067pt;}
.y141{bottom:149.933333pt;}
.y100{bottom:150.750667pt;}
.y1e{bottom:151.342667pt;}
.y12b{bottom:153.513467pt;}
.y6c{bottom:154.416400pt;}
.yce{bottom:156.852400pt;}
.y58{bottom:159.715733pt;}
.ya3{bottom:159.844133pt;}
.y153{bottom:160.484533pt;}
.y8a{bottom:163.266667pt;}
.y173{bottom:164.369067pt;}
.y140{bottom:165.933333pt;}
.yff{bottom:166.750667pt;}
.y1d{bottom:167.342667pt;}
.y11e{bottom:167.589733pt;}
.y12a{bottom:169.513467pt;}
.y6b{bottom:170.416400pt;}
.ycd{bottom:172.852400pt;}
.y57{bottom:175.715733pt;}
.ya2{bottom:175.844133pt;}
.y89{bottom:179.266667pt;}
.y172{bottom:180.369067pt;}
.y13f{bottom:181.933333pt;}
.yfe{bottom:182.750667pt;}
.y1c{bottom:183.342667pt;}
.y129{bottom:185.513467pt;}
.y6a{bottom:186.416400pt;}
.y152{bottom:187.823200pt;}
.ycc{bottom:188.852400pt;}
.y18a{bottom:191.707733pt;}
.y56{bottom:191.715733pt;}
.ya1{bottom:191.844133pt;}
.y88{bottom:195.266667pt;}
.y171{bottom:196.369067pt;}
.y13e{bottom:197.933333pt;}
.yfd{bottom:198.750667pt;}
.y1b{bottom:199.342667pt;}
.y128{bottom:201.513467pt;}
.y69{bottom:202.416400pt;}
.y151{bottom:203.823200pt;}
.ycb{bottom:204.852400pt;}
.y189{bottom:207.707733pt;}
.y55{bottom:207.715733pt;}
.ya0{bottom:207.844133pt;}
.yd9{bottom:209.115067pt;}
.y87{bottom:211.266667pt;}
.y11d{bottom:212.933600pt;}
.y13d{bottom:213.933333pt;}
.yfc{bottom:214.750667pt;}
.y1a{bottom:215.342667pt;}
.y127{bottom:217.513467pt;}
.y68{bottom:218.416400pt;}
.y150{bottom:219.823200pt;}
.yca{bottom:220.852400pt;}
.y170{bottom:223.707733pt;}
.y54{bottom:223.715733pt;}
.y9f{bottom:223.844133pt;}
.yd8{bottom:225.115067pt;}
.y86{bottom:227.266667pt;}
.y11c{bottom:228.933600pt;}
.y13c{bottom:229.933333pt;}
.yfb{bottom:230.750667pt;}
.y19{bottom:231.342667pt;}
.y126{bottom:233.513467pt;}
.y67{bottom:234.416400pt;}
.yc9{bottom:236.852400pt;}
.y16f{bottom:239.707733pt;}
.y53{bottom:239.715733pt;}
.y9e{bottom:239.844133pt;}
.y130{bottom:241.072533pt;}
.yd7{bottom:241.115067pt;}
.y85{bottom:243.266667pt;}
.y11b{bottom:244.933600pt;}
.y13b{bottom:245.933333pt;}
.yfa{bottom:246.750667pt;}
.y14f{bottom:247.161733pt;}
.y18{bottom:247.342667pt;}
.y125{bottom:249.513467pt;}
.y66{bottom:250.416400pt;}
.y188{bottom:251.046267pt;}
.yc8{bottom:252.852400pt;}
.y16e{bottom:255.707733pt;}
.y52{bottom:255.715733pt;}
.y9d{bottom:255.844133pt;}
.yd6{bottom:257.115067pt;}
.y84{bottom:259.266667pt;}
.y11a{bottom:260.933600pt;}
.y13a{bottom:261.933333pt;}
.yf9{bottom:262.750667pt;}
.y14e{bottom:263.161733pt;}
.y17{bottom:263.342667pt;}
.y124{bottom:265.513467pt;}
.y65{bottom:266.416400pt;}
.y187{bottom:267.046267pt;}
.yc7{bottom:268.852400pt;}
.yaa{bottom:269.072533pt;}
.y16d{bottom:271.707733pt;}
.y51{bottom:271.715733pt;}
.y9c{bottom:271.844133pt;}
.yd5{bottom:273.115067pt;}
.y83{bottom:275.266667pt;}
.y119{bottom:276.933600pt;}
.y139{bottom:277.933333pt;}
.y14d{bottom:279.161733pt;}
.y16{bottom:279.342667pt;}
.y64{bottom:282.416400pt;}
.y186{bottom:283.046267pt;}
.yc6{bottom:284.852400pt;}
.y50{bottom:287.715733pt;}
.y9b{bottom:287.844133pt;}
.y123{bottom:289.072533pt;}
.yd4{bottom:289.115067pt;}
.y82{bottom:291.266667pt;}
.yf8{bottom:291.979067pt;}
.y118{bottom:292.933600pt;}
.y138{bottom:293.933333pt;}
.y15{bottom:295.342667pt;}
.y90{bottom:298.416400pt;}
.y16c{bottom:299.046267pt;}
.yc5{bottom:300.852400pt;}
.y4f{bottom:303.715733pt;}
.y9a{bottom:303.844133pt;}
.yd3{bottom:305.115067pt;}
.y14c{bottom:306.500267pt;}
.y81{bottom:307.266667pt;}
.y117{bottom:308.933600pt;}
.y137{bottom:309.933333pt;}
.y14{bottom:311.342667pt;}
.y63{bottom:314.416400pt;}
.y16b{bottom:315.046267pt;}
.yc4{bottom:316.852400pt;}
.y4e{bottom:319.715733pt;}
.y99{bottom:319.844133pt;}
.y14b{bottom:322.500267pt;}
.y80{bottom:323.266667pt;}
.y116{bottom:324.933600pt;}
.y136{bottom:325.933333pt;}
.y185{bottom:326.384800pt;}
.y13{bottom:327.342667pt;}
.y62{bottom:330.416400pt;}
.y16a{bottom:331.046267pt;}
.yc3{bottom:332.852400pt;}
.y4d{bottom:335.715733pt;}
.y98{bottom:335.844133pt;}
.y14a{bottom:338.500267pt;}
.y7f{bottom:339.266667pt;}
.y115{bottom:340.933600pt;}
.y135{bottom:341.933333pt;}
.y184{bottom:342.384800pt;}
.y12{bottom:343.342667pt;}
.yd2{bottom:343.792267pt;}
.y61{bottom:346.416400pt;}
.yc2{bottom:348.852400pt;}
.y97{bottom:351.844133pt;}
.y7e{bottom:355.266667pt;}
.y114{bottom:356.933600pt;}
.y134{bottom:357.933333pt;}
.y169{bottom:358.384800pt;}
.y11{bottom:359.342800pt;}
.yf7{bottom:360.000133pt;}
.y60{bottom:362.416400pt;}
.yc1{bottom:364.852400pt;}
.y149{bottom:365.838933pt;}
.y4c{bottom:367.715733pt;}
.y96{bottom:367.844133pt;}
.y7d{bottom:371.266667pt;}
.y113{bottom:372.933600pt;}
.y168{bottom:374.384800pt;}
.yf6{bottom:374.666800pt;}
.y10{bottom:375.342800pt;}
.y5f{bottom:378.416400pt;}
.yc0{bottom:380.852400pt;}
.y148{bottom:381.838933pt;}
.y4b{bottom:383.715733pt;}
.y95{bottom:383.844133pt;}
.y133{bottom:387.161733pt;}
.y7c{bottom:387.266667pt;}
.y112{bottom:388.933600pt;}
.y167{bottom:390.384800pt;}
.yf{bottom:391.342800pt;}
.yf5{bottom:394.177333pt;}
.y39{bottom:394.416400pt;}
.ybf{bottom:396.852400pt;}
.y147{bottom:397.838933pt;}
.y4a{bottom:399.715733pt;}
.y94{bottom:399.844133pt;}
.y183{bottom:401.723467pt;}
.y7b{bottom:403.266800pt;}
.y111{bottom:404.933600pt;}
.y166{bottom:406.384800pt;}
.ye{bottom:407.342800pt;}
.y21{bottom:408.382667pt;}
.yf4{bottom:408.767067pt;}
.y38{bottom:410.416400pt;}
.ybe{bottom:412.852400pt;}
.y49{bottom:415.715733pt;}
.y93{bottom:415.844133pt;}
.y182{bottom:417.723467pt;}
.y7a{bottom:419.266800pt;}
.y110{bottom:420.933600pt;}
.yd{bottom:423.342800pt;}
.yf3{bottom:423.356667pt;}
.y37{bottom:426.416400pt;}
.y146{bottom:427.067200pt;}
.ybd{bottom:428.852400pt;}
.yef{bottom:430.651467pt;}
.y48{bottom:431.715733pt;}
.y92{bottom:431.844133pt;}
.y165{bottom:433.723467pt;}
.y79{bottom:435.266800pt;}
.y10f{bottom:436.933600pt;}
.yf2{bottom:437.946400pt;}
.yc{bottom:439.342800pt;}
.y36{bottom:442.416400pt;}
.ybc{bottom:444.852400pt;}
.y132{bottom:445.733867pt;}
.y47{bottom:447.715733pt;}
.y164{bottom:449.723467pt;}
.y78{bottom:451.266800pt;}
.yf1{bottom:452.536000pt;}
.y10e{bottom:452.933600pt;}
.yb{bottom:455.342800pt;}
.y35{bottom:458.416400pt;}
.ybb{bottom:460.852400pt;}
.y181{bottom:461.062000pt;}
.y91{bottom:461.072533pt;}
.y46{bottom:463.715733pt;}
.ya9{bottom:464.495067pt;}
.y163{bottom:465.723467pt;}
.yf0{bottom:467.125733pt;}
.y77{bottom:467.266800pt;}
.y10d{bottom:468.933600pt;}
.ya{bottom:471.342800pt;}
.y34{bottom:474.416400pt;}
.y131{bottom:475.067200pt;}
.yba{bottom:476.852400pt;}
.y180{bottom:477.062000pt;}
.y45{bottom:479.715733pt;}
.yee{bottom:481.715467pt;}
.y162{bottom:481.723467pt;}
.y76{bottom:483.266800pt;}
.y10c{bottom:484.933600pt;}
.y9{bottom:487.342800pt;}
.y33{bottom:490.416400pt;}
.yb9{bottom:492.852400pt;}
.y17f{bottom:493.062000pt;}
.y44{bottom:495.715733pt;}
.yed{bottom:496.305200pt;}
.yea{bottom:497.933333pt;}
.y75{bottom:499.266800pt;}
.y10b{bottom:500.933600pt;}
.y8{bottom:503.342800pt;}
.y32{bottom:506.416400pt;}
.yb8{bottom:508.852400pt;}
.y161{bottom:509.062000pt;}
.ye9{bottom:509.266667pt;}
.yec{bottom:510.894800pt;}
.y43{bottom:511.715733pt;}
.y74{bottom:515.266800pt;}
.y10a{bottom:516.933600pt;}
.y17e{bottom:520.400533pt;}
.y31{bottom:522.416400pt;}
.ya8{bottom:523.067200pt;}
.yb7{bottom:524.852400pt;}
.y160{bottom:525.062000pt;}
.yeb{bottom:525.484533pt;}
.y42{bottom:527.715733pt;}
.y73{bottom:531.266800pt;}
.y109{bottom:532.933600pt;}
.y17d{bottom:536.400533pt;}
.y7{bottom:538.019867pt;}
.y30{bottom:538.416400pt;}
.ye8{bottom:540.074267pt;}
.yb6{bottom:540.852400pt;}
.y15f{bottom:541.062000pt;}
.y41{bottom:543.715733pt;}
.y108{bottom:548.933600pt;}
.y17c{bottom:552.400533pt;}
.y2f{bottom:554.416400pt;}
.ye7{bottom:554.664000pt;}
.yb5{bottom:556.852400pt;}
.y40{bottom:559.715733pt;}
.y72{bottom:560.495067pt;}
.ye4{bottom:561.958800pt;}
.y107{bottom:564.933600pt;}
.y15e{bottom:568.400533pt;}
.ye6{bottom:569.253600pt;}
.y2e{bottom:570.416400pt;}
.yb4{bottom:572.852400pt;}
.y3f{bottom:575.715733pt;}
.y17b{bottom:579.739200pt;}
.y106{bottom:580.933600pt;}
.ye5{bottom:583.843333pt;}
.y15d{bottom:584.400533pt;}
.y2d{bottom:586.416400pt;}
.yb3{bottom:588.852400pt;}
.y6{bottom:589.810000pt;}
.y3e{bottom:591.715733pt;}
.y17a{bottom:595.739200pt;}
.y105{bottom:596.933600pt;}
.ye3{bottom:598.433067pt;}
.y15c{bottom:600.400533pt;}
.y2c{bottom:602.416400pt;}
.yb2{bottom:604.852400pt;}
.y3d{bottom:607.715733pt;}
.ye2{bottom:613.022667pt;}
.y2b{bottom:618.416400pt;}
.y71{bottom:619.067200pt;}
.yb1{bottom:620.852400pt;}
.y179{bottom:623.077733pt;}
.y104{bottom:626.162000pt;}
.y5{bottom:627.143333pt;}
.ye1{bottom:627.612400pt;}
.y15b{bottom:627.739200pt;}
.y2a{bottom:634.416400pt;}
.ydc{bottom:636.535467pt;}
.yb0{bottom:636.852400pt;}
.y178{bottom:639.077733pt;}
.ye0{bottom:642.202133pt;}
.ydb{bottom:647.868800pt;}
.y3c{bottom:650.172400pt;}
.y29{bottom:650.416400pt;}
.yaf{bottom:652.852400pt;}
.y15a{bottom:655.077733pt;}
.ydf{bottom:656.791733pt;}
.y4{bottom:664.476667pt;}
.y28{bottom:666.416400pt;}
.yae{bottom:668.852400pt;}
.y159{bottom:671.077733pt;}
.yde{bottom:671.381467pt;}
.y3b{bottom:675.505733pt;}
.y5e{bottom:682.416400pt;}
.y103{bottom:684.734133pt;}
.ydd{bottom:685.971200pt;}
.y158{bottom:687.077733pt;}
.yad{bottom:698.080800pt;}
.y27{bottom:698.416400pt;}
.yda{bottom:700.226933pt;}
.y3a{bottom:714.067467pt;}
.y26{bottom:714.416400pt;}
.yac{bottom:720.747467pt;}
.yd1{bottom:726.091467pt;}
.y25{bottom:730.416400pt;}
.y22{bottom:778.393733pt;}
.h9{height:28.746667pt;}
.h11{height:32.896000pt;}
.h2{height:34.682667pt;}
.h12{height:37.080000pt;}
.h6{height:37.552083pt;}
.hd{height:37.734375pt;}
.h5{height:38.411458pt;}
.h8{height:39.722667pt;}
.hf{height:41.765625pt;}
.h10{height:45.232000pt;}
.h7{height:46.406250pt;}
.he{height:54.501333pt;}
.h4{height:57.568000pt;}
.hc{height:61.680000pt;}
.hb{height:69.904000pt;}
.ha{height:82.240000pt;}
.h3{height:106.912000pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:12.950533pt;}
.x6{left:13.908000pt;}
.x1{left:83.149600pt;}
.xf{left:90.682933pt;}
.x5{left:96.378000pt;}
.xc{left:117.165333pt;}
.xe{left:157.625200pt;}
.x9{left:295.415467pt;}
.x4{left:359.910800pt;}
.x3{left:402.749333pt;}
.x2{left:414.164000pt;}
.x7{left:453.476000pt;}
.xd{left:598.640800pt;}
.x8{left:599.707733pt;}
.xb{left:600.614800pt;}
}




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